Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
name |
str |
|
[optional] |
allow_sms_keyword |
bool |
|
[optional] |
allow_hmac |
bool |
|
[optional] |
conversion_callback_url |
str |
|
[optional] |
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]