Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.45 KB

AwsExchangeCredentialsProjectToken.md

File metadata and controls

29 lines (22 loc) · 1.45 KB

AwsExchangeCredentialsProjectToken

Properties

Name Type Description Notes
session_id str ID of the session generated by a client.
configuration_id str ID of the Affinidi Iota Framework configuration.
did str The Decentalised Identifier (DID) of the user.

Example

from affinidi_tdk_iota_client.models.aws_exchange_credentials_project_token import AwsExchangeCredentialsProjectToken

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

# convert the object into a dict
aws_exchange_credentials_project_token_dict = aws_exchange_credentials_project_token_instance.to_dict()
# create an instance of AwsExchangeCredentialsProjectToken from a dict
aws_exchange_credentials_project_token_from_dict = AwsExchangeCredentialsProjectToken.from_dict(aws_exchange_credentials_project_token_dict)

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