Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.77 KB

File metadata and controls

35 lines (26 loc) · 1.77 KB

AuthenticationexternalResponseCompound

A Authenticationexternal Object

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 [optional]
s_authenticationexternal_authorizationurl str The url to authorize the Authenticationexternal [optional]
obj_audit CommonAudit

Example

from eZmaxApi.models.authenticationexternal_response_compound import AuthenticationexternalResponseCompound

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

# convert the object into a dict
authenticationexternal_response_compound_dict = authenticationexternal_response_compound_instance.to_dict()
# create an instance of AuthenticationexternalResponseCompound from a dict
authenticationexternal_response_compound_from_dict = AuthenticationexternalResponseCompound.from_dict(authenticationexternal_response_compound_dict)

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