Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 958 Bytes

File metadata and controls

32 lines (23 loc) · 958 Bytes

UserCredits

Properties

Name Type Description Notes
created_at datetime [optional]
credits int
updated_at datetime [optional]
user_id int

Example

from revengai.models.user_credits import UserCredits

# TODO update the JSON string below
json = "{}"
# create an instance of UserCredits from a JSON string
user_credits_instance = UserCredits.from_json(json)
# print the JSON string representation of the object
print(UserCredits.to_json())

# convert the object into a dict
user_credits_dict = user_credits_instance.to_dict()
# create an instance of UserCredits from a dict
user_credits_from_dict = UserCredits.from_dict(user_credits_dict)

[Back to Model list] [Back to API list] [Back to README]