Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

Adminpaymenthistoryresponse

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
payments List[Adminpaymenthistoryfields] [optional]

Example

from hyperstack.models.adminpaymenthistoryresponse import Adminpaymenthistoryresponse

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

# convert the object into a dict
adminpaymenthistoryresponse_dict = adminpaymenthistoryresponse_instance.to_dict()
# create an instance of Adminpaymenthistoryresponse from a dict
adminpaymenthistoryresponse_form_dict = adminpaymenthistoryresponse.from_dict(adminpaymenthistoryresponse_dict)

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