Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.39 KB

BrandingAutocompleteElementResponse.md

File metadata and controls

32 lines (23 loc) · 1.39 KB

BrandingAutocompleteElementResponse

Branding AutocompleteElement Response

Properties

Name Type Description Notes
s_branding_description_x str The Description of the Branding in the language of the requester
pki_branding_id int The unique ID of the Branding
b_branding_isactive bool Whether the Branding is active or not

Example

from eZmaxApi.models.branding_autocomplete_element_response import BrandingAutocompleteElementResponse

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

# convert the object into a dict
branding_autocomplete_element_response_dict = branding_autocomplete_element_response_instance.to_dict()
# create an instance of BrandingAutocompleteElementResponse from a dict
branding_autocomplete_element_response_form_dict = branding_autocomplete_element_response.from_dict(branding_autocomplete_element_response_dict)

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