Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

UserTokenPolicy.md

File metadata and controls

33 lines (24 loc) · 1.08 KB

UserTokenPolicy

Properties

Name Type Description Notes
policy_id str [optional]
token_type int [optional]
issued_token_type str [optional]
issuer_endpoint_url str [optional]
security_policy_uri str [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]