Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

ManufacturerResponse.md

File metadata and controls

29 lines (21 loc) · 1.03 KB

ManufacturerResponse

Properties

Name Type Description Notes
manufacturer Manufacturer [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.manufacturer_response import ManufacturerResponse

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

# convert the object into a dict
manufacturer_response_dict = manufacturer_response_instance.to_dict()
# create an instance of ManufacturerResponse from a dict
manufacturer_response_form_dict = manufacturer_response.from_dict(manufacturer_response_dict)

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