Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 960 Bytes

EventInputRequest.md

File metadata and controls

28 lines (20 loc) · 960 Bytes

EventInputRequest

Properties

Name Type Description Notes
event EventInput [optional]

Example

from sparkfly_client.models.event_input_request import EventInputRequest

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

# convert the object into a dict
event_input_request_dict = event_input_request_instance.to_dict()
# create an instance of EventInputRequest from a dict
event_input_request_form_dict = event_input_request.from_dict(event_input_request_dict)

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