| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| status | bool | [optional] | |
| payments | List[Adminpaymenthistoryfields] | [optional] |
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)