Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

PageAllowance

Properties

Name Type Description Notes
allowance PageAllowanceInfo [optional]
usage_history List[PageAllowanceUsageHistoryInner] [optional]

Example

from rankvectors.models.page_allowance import PageAllowance

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

# convert the object into a dict
page_allowance_dict = page_allowance_instance.to_dict()
# create an instance of PageAllowance from a dict
page_allowance_from_dict = PageAllowance.from_dict(page_allowance_dict)

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