| Name | Type | Description | Notes |
|---|---|---|---|
| brand_id | str | [optional] |
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)