UserNameIdentityToken

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
user_namestr[optional]
passwordbytearray[optional]
encryption_algorithmstr[optional]
policy_idstr[optional]

Example

from opcua_webapi.models.user_name_identity_token import UserNameIdentityToken

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

# convert the object into a dict
user_name_identity_token_dict = user_name_identity_token_instance.to_dict()
# create an instance of UserNameIdentityToken from a dict
user_name_identity_token_from_dict = UserNameIdentityToken.from_dict(user_name_identity_token_dict)

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