| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] |
from boldsign.models.branding_message import BrandingMessage
# TODO update the JSON string below
json = "{}"
# create an instance of BrandingMessage from a JSON string
branding_message_instance = BrandingMessage.from_json(json)
# print the JSON string representation of the object
print(BrandingMessage.to_json())
# convert the object into a dict
branding_message_dict = branding_message_instance.to_dict()
# create an instance of BrandingMessage from a dict
branding_message_from_dict = BrandingMessage.from_dict(branding_message_dict)