Name | Type | Description | Notes |
---|---|---|---|
name | str | ||
code | str |
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)