Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 942 Bytes

File metadata and controls

34 lines (25 loc) · 942 Bytes

Plan

Properties

Name Type Description Notes
name str
price str
features List[Feature]
measurement str [optional]
is_exceeded bool [optional]
is_current bool [optional]

Example

from wallet.models.plan import Plan

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

# convert the object into a dict
plan_dict = plan_instance.to_dict()
# create an instance of Plan from a dict
plan_form_dict = plan.from_dict(plan_dict)

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