Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.09 KB

StoreInput.md

File metadata and controls

34 lines (26 loc) · 1.09 KB

StoreInput

Properties

Name Type Description Notes
name str [optional]
description str [optional]
is_active bool [optional]
number str [optional]
phone str [optional]
primary Contact [optional]
secondary Contact [optional]

Example

from sparkfly_client.models.store_input import StoreInput

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

# convert the object into a dict
store_input_dict = store_input_instance.to_dict()
# create an instance of StoreInput from a dict
store_input_form_dict = store_input.from_dict(store_input_dict)

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