Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 952 Bytes

File metadata and controls

33 lines (24 loc) · 952 Bytes

Channel

Properties

Name Type Description Notes
id int [optional]
name str [optional]
enabled int [optional]
created_at int [optional]
updated_at int [optional]

Example

from supportpal_client.models.channel import Channel

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

# convert the object into a dict
channel_dict = channel_instance.to_dict()
# create an instance of Channel from a dict
channel_from_dict = Channel.from_dict(channel_dict)

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