Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

CustomDropdownElementRequest.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

CustomDropdownElementRequest

Generic DropdownElement Request

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 import CustomDropdownElementRequest

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

# convert the object into a dict
custom_dropdown_element_request_dict = custom_dropdown_element_request_instance.to_dict()
# create an instance of CustomDropdownElementRequest from a dict
custom_dropdown_element_request_form_dict = custom_dropdown_element_request.from_dict(custom_dropdown_element_request_dict)

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