Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 3.01 KB

BrandingRequest.md

File metadata and controls

45 lines (36 loc) · 3.01 KB

BrandingRequest

A Branding Object

Properties

Name Type Description Notes
pki_branding_id int The unique ID of the Branding [optional]
obj_branding_description MultilingualBrandingDescription
e_branding_logo FieldEBrandingLogo
s_branding_base64 bytearray The Base64 encoded binary content of the branding logo. This need to match image type selected in eBrandingLogo if you supply an image. If you select 'Default', the logo will be deleted and the default one will be used. [optional]
e_branding_logointerface FieldEBrandingLogointerface [optional]
s_branding_logointerface_base64 bytearray The Base64 encoded binary content of the branding logo. This need to match image type selected in eBrandingLogointerface if you supply an image. If you select 'Default', the logo will be deleted and the default one will be used. [optional]
i_branding_colortext int The color of the text. This is a RGB color converted into integer
i_branding_colortextlinkbox int The color of the text in the link box. This is a RGB color converted into integer
i_branding_colortextbutton int The color of the text in the button. This is a RGB color converted into integer
i_branding_colorbackground int The color of the background. This is a RGB color converted into integer
i_branding_colorbackgroundbutton int The color of the background of the button. This is a RGB color converted into integer
i_branding_colorbackgroundsmallbox int The color of the background of the small box. This is a RGB color converted into integer
i_branding_interfacecolor int The color of the interface. This is a RGB color converted into integer [optional]
s_branding_name str The name of the Branding This value will only be set if you wish to overwrite the default name. If you want to keep the default name, leave this property empty [optional]
s_email_address str The email address. [optional]
b_branding_isactive bool Whether the Branding is active or not

Example

from eZmaxApi.models.branding_request import BrandingRequest

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

# convert the object into a dict
branding_request_dict = branding_request_instance.to_dict()
# create an instance of BrandingRequest from a dict
branding_request_form_dict = branding_request.from_dict(branding_request_dict)

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