Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 999 Bytes

File metadata and controls

29 lines (20 loc) · 999 Bytes

PolicyUserNameTemplate

Properties

Name Type Description Notes
template str [optional]

Example

from okta.models.policy_user_name_template import PolicyUserNameTemplate

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

# convert the object into a dict
policy_user_name_template_dict = policy_user_name_template_instance.to_dict()
# create an instance of PolicyUserNameTemplate from a dict
policy_user_name_template_from_dict = PolicyUserNameTemplate.from_dict(policy_user_name_template_dict)

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