Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 973 Bytes

Channel.md

File metadata and controls

32 lines (24 loc) · 973 Bytes

Channel

Properties

Name Type Description Notes
id int [optional]
name str [optional]
allow_sms_keyword bool [optional]
allow_hmac bool [optional]
conversion_callback_url str [optional]

Example

from sparkfly_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_form_dict = channel.from_dict(channel_dict)

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