Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

File metadata and controls

30 lines (21 loc) · 1002 Bytes

PagePricing

Properties

Name Type Description Notes
tiers List[PagePricingTiersInner] [optional]
page_packs List[PagePricingPagePacksInner] [optional]

Example

from rankvectors.models.page_pricing import PagePricing

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

# convert the object into a dict
page_pricing_dict = page_pricing_instance.to_dict()
# create an instance of PagePricing from a dict
page_pricing_from_dict = PagePricing.from_dict(page_pricing_dict)

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