A Authenticationexternal Object and children
Name | Type | Description | Notes |
---|---|---|---|
pki_authenticationexternal_id | int | The unique ID of the Authenticationexternal | [optional] |
s_authenticationexternal_description | str | The description of the Authenticationexternal | |
e_authenticationexternal_type | FieldEAuthenticationexternalType |
from eZmaxApi.models.authenticationexternal_request_compound import AuthenticationexternalRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticationexternalRequestCompound from a JSON string
authenticationexternal_request_compound_instance = AuthenticationexternalRequestCompound.from_json(json)
# print the JSON string representation of the object
print(AuthenticationexternalRequestCompound.to_json())
# convert the object into a dict
authenticationexternal_request_compound_dict = authenticationexternal_request_compound_instance.to_dict()
# create an instance of AuthenticationexternalRequestCompound from a dict
authenticationexternal_request_compound_from_dict = AuthenticationexternalRequestCompound.from_dict(authenticationexternal_request_compound_dict)