Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

AuthenticationexternalRequest.md

File metadata and controls

32 lines (23 loc) · 1.37 KB

AuthenticationexternalRequest

A Authenticationexternal Object

Properties

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

Example

from eZmaxApi.models.authenticationexternal_request import AuthenticationexternalRequest

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

# convert the object into a dict
authenticationexternal_request_dict = authenticationexternal_request_instance.to_dict()
# create an instance of AuthenticationexternalRequest from a dict
authenticationexternal_request_from_dict = AuthenticationexternalRequest.from_dict(authenticationexternal_request_dict)

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