Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.7 KB

File metadata and controls

36 lines (27 loc) · 1.7 KB

SMSTenDLCPartnerCampaignsListResult

Properties

Name Type Description Notes
total int Total amount of requested resource. [optional]
start int Resource index at start of current page [optional]
end int Resource index at end of current page [optional]
page int Current page [optional]
num_pages int Total number of pages [optional]
page_size int Number of items per page [optional]
next_page_uri str Uri to retrieve the next page of items [optional]
partner_campaigns List[SMSTenDLCPartnerCampaign] [optional]

Example

from freeclimb.models.sms_ten_dlc_partner_campaigns_list_result import SMSTenDLCPartnerCampaignsListResult

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

# convert the object into a dict
sms_ten_dlc_partner_campaigns_list_result_dict = sms_ten_dlc_partner_campaigns_list_result_instance.to_dict()
# create an instance of SMSTenDLCPartnerCampaignsListResult from a dict
sms_ten_dlc_partner_campaigns_list_result_from_dict = SMSTenDLCPartnerCampaignsListResult.from_dict(sms_ten_dlc_partner_campaigns_list_result_dict)

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