Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 838 Bytes

ItemInput.md

File metadata and controls

29 lines (21 loc) · 838 Bytes

ItemInput

Properties

Name Type Description Notes
name str
code str

Example

from sparkfly_client.models.item_input import ItemInput

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

# convert the object into a dict
item_input_dict = item_input_instance.to_dict()
# create an instance of ItemInput from a dict
item_input_form_dict = item_input.from_dict(item_input_dict)

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