Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

UISchemasResponseObject

Properties

Name Type Description Notes
created datetime Timestamp when the UI Schema was created (ISO-86001) [readonly]
id str Unique identifier for the UI Schema [readonly]
last_updated datetime Timestamp when the UI Schema was last modified (ISO-86001) [readonly]
ui_schema UISchemaObject
links LinksSelf

Example

from okta.models.ui_schemas_response_object import UISchemasResponseObject

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

# convert the object into a dict
ui_schemas_response_object_dict = ui_schemas_response_object_instance.to_dict()
# create an instance of UISchemasResponseObject from a dict
ui_schemas_response_object_from_dict = UISchemasResponseObject.from_dict(ui_schemas_response_object_dict)

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