Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 899 Bytes

File metadata and controls

29 lines (20 loc) · 899 Bytes

BrandingMessage

Properties

Name Type Description Notes
message str [optional]

Example

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)

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