| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| price | str | ||
| features | List[Feature] | ||
| measurement | str | [optional] | |
| is_exceeded | bool | [optional] | |
| is_current | bool | [optional] |
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)