Request for POST /2/object/branding
Name | Type | Description | Notes |
---|---|---|---|
a_obj_branding | List[BrandingRequestCompoundV2] |
from eZmaxApi.models.branding_create_object_v2_request import BrandingCreateObjectV2Request
# TODO update the JSON string below
json = "{}"
# create an instance of BrandingCreateObjectV2Request from a JSON string
branding_create_object_v2_request_instance = BrandingCreateObjectV2Request.from_json(json)
# print the JSON string representation of the object
print(BrandingCreateObjectV2Request.to_json())
# convert the object into a dict
branding_create_object_v2_request_dict = branding_create_object_v2_request_instance.to_dict()
# create an instance of BrandingCreateObjectV2Request from a dict
branding_create_object_v2_request_from_dict = BrandingCreateObjectV2Request.from_dict(branding_create_object_v2_request_dict)