Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.16 KB

File metadata and controls

39 lines (30 loc) · 1.16 KB

Payment

Properties

Name Type Description Notes
id int [optional]
plan_id int [optional]
processor str [optional]
type str [optional]
frequency str [optional]
email str [optional]
name str [optional]
total_amount str [optional]
currency str [optional]
status bool [optional]
var_date datetime [optional]

Example

from openapi_client.models.payment import Payment

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

# convert the object into a dict
payment_dict = payment_instance.to_dict()
# create an instance of Payment from a dict
payment_from_dict = Payment.from_dict(payment_dict)

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