Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

PaymentDetailsResponse

Properties

Name Type Description Notes
data PaymentDetailsFields [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.payment_details_response import PaymentDetailsResponse

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

# convert the object into a dict
payment_details_response_dict = payment_details_response_instance.to_dict()
# create an instance of PaymentDetailsResponse from a dict
payment_details_response_from_dict = PaymentDetailsResponse.from_dict(payment_details_response_dict)

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