Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.9 KB

LoginSessionDtoAuthorizationRequest.md

File metadata and controls

31 lines (24 loc) · 1.9 KB

LoginSessionDtoAuthorizationRequest

Properties

Name Type Description Notes
state str State parameter
presentation_definition str Presentation Definition to ask from the user. In JSON Stringify format.
ari str ARI is used for analytics proposals. [optional]
client_id str clientId used for detect origin. [optional]
nonce str nonce for VP Token proof challenge [optional]

Example

from affinidi_tdk_login_configuration_client.models.login_session_dto_authorization_request import LoginSessionDtoAuthorizationRequest

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

# convert the object into a dict
login_session_dto_authorization_request_dict = login_session_dto_authorization_request_instance.to_dict()
# create an instance of LoginSessionDtoAuthorizationRequest from a dict
login_session_dto_authorization_request_from_dict = LoginSessionDtoAuthorizationRequest.from_dict(login_session_dto_authorization_request_dict)

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