Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 861 Bytes

File metadata and controls

29 lines (20 loc) · 861 Bytes

BrandCreated

Properties

Name Type Description Notes
brand_id str [optional]

Example

from boldsign.models.brand_created import BrandCreated

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

# convert the object into a dict
brand_created_dict = brand_created_instance.to_dict()
# create an instance of BrandCreated from a dict
brand_created_from_dict = BrandCreated.from_dict(brand_created_dict)

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