Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.53 KB

AuthenticationexternalListElement.md

File metadata and controls

33 lines (24 loc) · 1.53 KB

AuthenticationexternalListElement

A Authenticationexternal List Element

Properties

Name Type Description Notes
pki_authenticationexternal_id int The unique ID of the Authenticationexternal
s_authenticationexternal_description str The description of the Authenticationexternal
e_authenticationexternal_type FieldEAuthenticationexternalType
b_authenticationexternal_connected bool Whether the Authenticationexternal has been connected or not

Example

from eZmaxApi.models.authenticationexternal_list_element import AuthenticationexternalListElement

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

# convert the object into a dict
authenticationexternal_list_element_dict = authenticationexternal_list_element_instance.to_dict()
# create an instance of AuthenticationexternalListElement from a dict
authenticationexternal_list_element_from_dict = AuthenticationexternalListElement.from_dict(authenticationexternal_list_element_dict)

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