UserTokenPolicy

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
policy_idstr[optional]
token_typeintLink to specification.[optional]
issued_token_typestr[optional]
issuer_endpoint_urlstr[optional]
security_policy_uristr[optional]

Example

from opcua_webapi.models.user_token_policy import UserTokenPolicy

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

# convert the object into a dict
user_token_policy_dict = user_token_policy_instance.to_dict()
# create an instance of UserTokenPolicy from a dict
user_token_policy_from_dict = UserTokenPolicy.from_dict(user_token_policy_dict)

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