Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.25 KB

PlanResponse.md

File metadata and controls

40 lines (31 loc) · 1.25 KB

PlanResponse

plans model

Properties

Name Type Description Notes
amount int [optional]
created_at int [optional]
currency str [optional]
expiry_count int [optional]
frequency int [optional]
id str [optional]
interval str [optional]
livemode bool [optional]
name str [optional]
object str [optional]
trial_period_days int [optional]

Example

from conekta.models.plan_response import PlanResponse

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

# convert the object into a dict
plan_response_dict = plan_response_instance.to_dict()
# create an instance of PlanResponse from a dict
plan_response_from_dict = PlanResponse.from_dict(plan_response_dict)

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