Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

UserNameIdentityToken

Link to specification.

Properties

Name Type Description Notes
user_name str [optional]
password bytearray [optional]
encryption_algorithm str [optional]
policy_id str [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]