| Name | Type | Description | Notes |
|---|---|---|---|
| allowance | PageAllowanceInfo | [optional] | |
| usage_history | List[PageAllowanceUsageHistoryInner] | [optional] |
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)