Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 6.22 KB

LoginConfigurationObject.md

File metadata and controls

40 lines (33 loc) · 6.22 KB

LoginConfigurationObject

Properties

Name Type Description Notes
ari str Configuration ari
configuration_id str Configuration id [optional]
project_id str Project id
name str User defined login configuration name
redirect_uris List[str] OAuth 2.0 Redirect URIs [optional]
post_logout_redirect_uris List[str] Post Logout Redirect URIs, Used to redirect the user's browser to a specified URL after the logout process is complete. Must match the domain, port, scheme of at least one of the registered redirect URIs [optional]
scope str OAuth 2.0 Client Scope [optional]
client_id str OAuth 2.0 Client ID
creation_date str OAuth 2.0 Client Creation Date
vp_definition str VP definition in JSON stringify format
presentation_definition object Presentation Definition [optional]
id_token_mapping IdTokenMapping
client_metadata LoginConfigurationClientMetadataOutput
token_endpoint_auth_method TokenEndpointAuthMethod

Example

from affinidi_tdk_login_configuration_client.models.login_configuration_object import LoginConfigurationObject

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

# convert the object into a dict
login_configuration_object_dict = login_configuration_object_instance.to_dict()
# create an instance of LoginConfigurationObject from a dict
login_configuration_object_from_dict = LoginConfigurationObject.from_dict(login_configuration_object_dict)

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