Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

File metadata and controls

33 lines (24 loc) · 1.5 KB

CustomNotificationtestgetelementsResponse

Element Object in the context of Notificationtest

Properties

Name Type Description Notes
pki_notificationtest_id int The unique ID of the Notificationtest
s_notificationtest_function str The function name of the Notificationtest
a_s_variableobject_property List[str]
a_obj_variableobject List[Dict[str, object]]

Example

from eZmaxApi.models.custom_notificationtestgetelements_response import CustomNotificationtestgetelementsResponse

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

# convert the object into a dict
custom_notificationtestgetelements_response_dict = custom_notificationtestgetelements_response_instance.to_dict()
# create an instance of CustomNotificationtestgetelementsResponse from a dict
custom_notificationtestgetelements_response_from_dict = CustomNotificationtestgetelementsResponse.from_dict(custom_notificationtestgetelements_response_dict)

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