| Name | Type | Description | Notes |
|---|---|---|---|
| id | object | ||
| name | object | ||
| price | object | ||
| nickname | object | ||
| examples | object | ||
| products | object | ||
| all_pages | object | ||
| annual | SubscriptionPlanAnnual | [optional] |
from wallet.models.subscription_plan import SubscriptionPlan
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriptionPlan from a JSON string
subscription_plan_instance = SubscriptionPlan.from_json(json)
# print the JSON string representation of the object
print SubscriptionPlan.to_json()
# convert the object into a dict
subscription_plan_dict = subscription_plan_instance.to_dict()
# create an instance of SubscriptionPlan from a dict
subscription_plan_form_dict = subscription_plan.from_dict(subscription_plan_dict)