Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

CustomDropdownElementRequestCompound.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

CustomDropdownElementRequestCompound

A Generic DropdownElement Object and children to create a complete structure

Properties

Name Type Description Notes
s_label str The Description of the element
s_value str The Value of the element

Example

from eZmaxApi.models.custom_dropdown_element_request_compound import CustomDropdownElementRequestCompound

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

# convert the object into a dict
custom_dropdown_element_request_compound_dict = custom_dropdown_element_request_compound_instance.to_dict()
# create an instance of CustomDropdownElementRequestCompound from a dict
custom_dropdown_element_request_compound_form_dict = custom_dropdown_element_request_compound.from_dict(custom_dropdown_element_request_compound_dict)

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