Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

PartnerList.md

File metadata and controls

36 lines (27 loc) · 1.3 KB

PartnerList

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.

Properties

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]

Example

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)

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