Name |
Type |
Description |
Notes |
token_data |
bytearray |
|
[optional] |
encryption_algorithm |
str |
|
[optional] |
policy_id |
str |
|
[optional] |
from opcua_webapi.models.issued_identity_token import IssuedIdentityToken
# TODO update the JSON string below
json = "{}"
# create an instance of IssuedIdentityToken from a JSON string
issued_identity_token_instance = IssuedIdentityToken.from_json(json)
# print the JSON string representation of the object
print(IssuedIdentityToken.to_json())
# convert the object into a dict
issued_identity_token_dict = issued_identity_token_instance.to_dict()
# create an instance of IssuedIdentityToken from a dict
issued_identity_token_from_dict = IssuedIdentityToken.from_dict(issued_identity_token_dict)
[Back to Model list] [Back to API list] [Back to README]