| Name | Type | Description | Notes |
|---|---|---|---|
| fips | FipsEnum | [optional] |
from okta.models.compliance import Compliance
# TODO update the JSON string below
json = "{}"
# create an instance of Compliance from a JSON string
compliance_instance = Compliance.from_json(json)
# print the JSON string representation of the object
print(Compliance.to_json())
# convert the object into a dict
compliance_dict = compliance_instance.to_dict()
# create an instance of Compliance from a dict
compliance_from_dict = Compliance.from_dict(compliance_dict)