Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 960 Bytes

StoreInputRequest.md

File metadata and controls

28 lines (20 loc) · 960 Bytes

StoreInputRequest

Properties

Name Type Description Notes
store StoreInput [optional]

Example

from sparkfly_client.models.store_input_request import StoreInputRequest

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

# convert the object into a dict
store_input_request_dict = store_input_request_instance.to_dict()
# create an instance of StoreInputRequest from a dict
store_input_request_form_dict = store_input_request.from_dict(store_input_request_dict)

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