| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| name |
str |
|
[optional] |
| monthly_price |
float |
|
[optional] |
| annual_price |
float |
|
[optional] |
| page_limit |
int |
|
[optional] |
| description |
str |
|
[optional] |
from rankvectors.models.page_pricing_tiers_inner import PagePricingTiersInner
# TODO update the JSON string below
json = "{}"
# create an instance of PagePricingTiersInner from a JSON string
page_pricing_tiers_inner_instance = PagePricingTiersInner.from_json(json)
# print the JSON string representation of the object
print(PagePricingTiersInner.to_json())
# convert the object into a dict
page_pricing_tiers_inner_dict = page_pricing_tiers_inner_instance.to_dict()
# create an instance of PagePricingTiersInner from a dict
page_pricing_tiers_inner_from_dict = PagePricingTiersInner.from_dict(page_pricing_tiers_inner_dict)
[Back to Model list] [Back to API list] [Back to README]