Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.03 KB

ChannelList.md

File metadata and controls

32 lines (24 loc) · 1.03 KB

ChannelList

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
channels List[ChannelResponse] [optional]

Example

from sparkfly_client.models.channel_list import ChannelList

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

# convert the object into a dict
channel_list_dict = channel_list_instance.to_dict()
# create an instance of ChannelList from a dict
channel_list_form_dict = channel_list.from_dict(channel_list_dict)

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