| Name | Type | Description | Notes |
|---|---|---|---|
| filter | str | [optional] | |
| format | List[str] | [optional] | |
| match_attribute | str | [optional] | |
| match_type | PolicySubjectMatchType | [optional] | |
| user_name_template | PolicyUserNameTemplate | [optional] |
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)