A object with a data property that contains an array of up to limit partners. Each entry in the array is a separate partner object. If no more partners are available, the resulting array will be empty.
Name | Type | Description | Notes |
---|---|---|---|
data | List[Partner] | [optional] | |
total | int | [optional] | |
per_page | int | [optional] | |
current_page | int | [optional] | |
last_page | int | [optional] | |
prev_page_url | str | [optional] | |
next_page_url | str | [optional] |
from clientapi_billingo.models.partner_list import PartnerList
# TODO update the JSON string below
json = "{}"
# create an instance of PartnerList from a JSON string
partner_list_instance = PartnerList.from_json(json)
# print the JSON string representation of the object
print(PartnerList.to_json())
# convert the object into a dict
partner_list_dict = partner_list_instance.to_dict()
# create an instance of PartnerList from a dict
partner_list_from_dict = PartnerList.from_dict(partner_list_dict)