Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 944 Bytes

ItemInputRequest.md

File metadata and controls

28 lines (20 loc) · 944 Bytes

ItemInputRequest

Properties

Name Type Description Notes
item ItemInput [optional]

Example

from sparkfly_client.models.item_input_request import ItemInputRequest

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

# convert the object into a dict
item_input_request_dict = item_input_request_instance.to_dict()
# create an instance of ItemInputRequest from a dict
item_input_request_form_dict = item_input_request.from_dict(item_input_request_dict)

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