Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 987 Bytes

File metadata and controls

29 lines (20 loc) · 987 Bytes

Admincreditpostpayload

Properties

Name Type Description Notes
credit float [optional]

Example

from hyperstack.models.admincreditpostpayload import Admincreditpostpayload

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

# convert the object into a dict
admincreditpostpayload_dict = admincreditpostpayload_instance.to_dict()
# create an instance of Admincreditpostpayload from a dict
admincreditpostpayload_form_dict = admincreditpostpayload.from_dict(admincreditpostpayload_dict)

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