| 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 |
|
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]