Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 992 Bytes

ChannelInputRequest.md

File metadata and controls

28 lines (20 loc) · 992 Bytes

ChannelInputRequest

Properties

Name Type Description Notes
channel ChannelInput [optional]

Example

from sparkfly_client.models.channel_input_request import ChannelInputRequest

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

# convert the object into a dict
channel_input_request_dict = channel_input_request_instance.to_dict()
# create an instance of ChannelInputRequest from a dict
channel_input_request_form_dict = channel_input_request.from_dict(channel_input_request_dict)

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