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). |
|
from affinidi_tdk_iota_client.models.iota_exchange_credentials import IotaExchangeCredentials
# TODO update the JSON string below
json = "{}"
# create an instance of IotaExchangeCredentials from a JSON string
iota_exchange_credentials_instance = IotaExchangeCredentials.from_json(json)
# print the JSON string representation of the object
print IotaExchangeCredentials.to_json()
# convert the object into a dict
iota_exchange_credentials_dict = iota_exchange_credentials_instance.to_dict()
# create an instance of IotaExchangeCredentials from a dict
iota_exchange_credentials_from_dict = IotaExchangeCredentials.from_dict(iota_exchange_credentials_dict)
[Back to Model list] [Back to API list] [Back to README]