Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

PolicySubject

Properties

Name Type Description Notes
filter str [optional]
format List[str] [optional]
match_attribute str [optional]
match_type PolicySubjectMatchType [optional]
user_name_template PolicyUserNameTemplate [optional]

Example

from okta.models.policy_subject import PolicySubject

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

# convert the object into a dict
policy_subject_dict = policy_subject_instance.to_dict()
# create an instance of PolicySubject from a dict
policy_subject_from_dict = PolicySubject.from_dict(policy_subject_dict)

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