Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.46 KB

AwsExchangeCredentials.md

File metadata and controls

27 lines (20 loc) · 1.46 KB

AwsExchangeCredentials

Properties

Name Type Description Notes
assertion str A valid JSON Web Token (JWT) that secures the WebSocket connection. The JWT is signed with the key pair's private key used to create the Personal Access Token (PAT).

Example

from affinidi_tdk_iota_client.models.aws_exchange_credentials import AwsExchangeCredentials

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

# convert the object into a dict
aws_exchange_credentials_dict = aws_exchange_credentials_instance.to_dict()
# create an instance of AwsExchangeCredentials from a dict
aws_exchange_credentials_from_dict = AwsExchangeCredentials.from_dict(aws_exchange_credentials_dict)

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