Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.05 KB

ManufacturerInputRequest.md

File metadata and controls

28 lines (20 loc) · 1.05 KB

ManufacturerInputRequest

Properties

Name Type Description Notes
manufacturer ManufacturerInput [optional]

Example

from sparkfly_client.models.manufacturer_input_request import ManufacturerInputRequest

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

# convert the object into a dict
manufacturer_input_request_dict = manufacturer_input_request_instance.to_dict()
# create an instance of ManufacturerInputRequest from a dict
manufacturer_input_request_form_dict = manufacturer_input_request.from_dict(manufacturer_input_request_dict)

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