Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

Creditrequests

Properties

Name Type Description Notes
admin_user_id int [optional]
amount float [optional]
reason str [optional]
status str [optional]
updated_at datetime [optional]

Example

from hyperstack.models.creditrequests import Creditrequests

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

# convert the object into a dict
creditrequests_dict = creditrequests_instance.to_dict()
# create an instance of Creditrequests from a dict
creditrequests_from_dict = Creditrequests.from_dict(creditrequests_dict)

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