Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 961 Bytes

File metadata and controls

30 lines (22 loc) · 961 Bytes

ColorInfo

Product color info.

Properties

Name Type Description Notes
color_families List[str] Product color families (array). [optional]
colors List[str] Product color (array). [optional]

Example

from gb_retailapi_client.models.color_info import ColorInfo

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

# convert the object into a dict
color_info_dict = color_info_instance.to_dict()
# create an instance of ColorInfo from a dict
color_info_form_dict = color_info.from_dict(color_info_dict)

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