Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

CustomBrandingResponse.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

CustomBrandingResponse

A Custom Branding Object

Properties

Name Type Description Notes
i_branding_color int The primary color. This is a RGB color converted into integer
s_branding_logointerfaceurl str The url of the picture used as logo in the Branding

Example

from eZmaxApi.models.custom_branding_response import CustomBrandingResponse

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

# convert the object into a dict
custom_branding_response_dict = custom_branding_response_instance.to_dict()
# create an instance of CustomBrandingResponse from a dict
custom_branding_response_from_dict = CustomBrandingResponse.from_dict(custom_branding_response_dict)

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