Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

PageAllowanceInfo

Properties

Name Type Description Notes
pages_total int Total pages allowed (tier + packs)
pages_used int Pages currently indexed across all projects
pages_remaining int Remaining pages before upgrade or page pack

Example

from rankvectors.models.page_allowance_info import PageAllowanceInfo

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

# convert the object into a dict
page_allowance_info_dict = page_allowance_info_instance.to_dict()
# create an instance of PageAllowanceInfo from a dict
page_allowance_info_from_dict = PageAllowanceInfo.from_dict(page_allowance_info_dict)

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