Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

PagePricingPagePacksInner

Properties

Name Type Description Notes
id str [optional]
name str [optional]
pages int [optional]
price float [optional]

Example

from rankvectors.models.page_pricing_page_packs_inner import PagePricingPagePacksInner

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

# convert the object into a dict
page_pricing_page_packs_inner_dict = page_pricing_page_packs_inner_instance.to_dict()
# create an instance of PagePricingPagePacksInner from a dict
page_pricing_page_packs_inner_from_dict = PagePricingPagePacksInner.from_dict(page_pricing_page_packs_inner_dict)

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