Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 841 Bytes

File metadata and controls

29 lines (20 loc) · 841 Bytes

Compliance

Properties

Name Type Description Notes
fips FipsEnum [optional]

Example

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)

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