Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.41 KB

File metadata and controls

40 lines (31 loc) · 1.41 KB

PaymentDetailsFields

Properties

Name Type Description Notes
amount float [optional]
created_at datetime [optional]
currency str [optional]
description str [optional]
gateway_response str [optional]
invoice str [optional]
paid_from str [optional]
payment_id str [optional]
status str [optional]
tax_amount float [optional]
transaction_id str [optional]
updated_at datetime [optional]

Example

from hyperstack.models.payment_details_fields import PaymentDetailsFields

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

# convert the object into a dict
payment_details_fields_dict = payment_details_fields_instance.to_dict()
# create an instance of PaymentDetailsFields from a dict
payment_details_fields_from_dict = PaymentDetailsFields.from_dict(payment_details_fields_dict)

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