Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

EligibleChannelInput.md

File metadata and controls

30 lines (22 loc) · 1.05 KB

EligibleChannelInput

Properties

Name Type Description Notes
security str [optional]
sms_keyword str [optional]
allow_return_later bool [optional]

Example

from sparkfly_client.models.eligible_channel_input import EligibleChannelInput

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

# convert the object into a dict
eligible_channel_input_dict = eligible_channel_input_instance.to_dict()
# create an instance of EligibleChannelInput from a dict
eligible_channel_input_form_dict = eligible_channel_input.from_dict(eligible_channel_input_dict)

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