Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

UISchemaObject

Properties of the UI schema

Properties

Name Type Description Notes
button_label str Specifies the button label for the `Submit` button at the bottom of the enrollment form [optional] [default to 'Submit']
elements List[UIElement] [optional]
label str Specifies the label at the top of the enrollment form under the logo [optional] [default to 'Sign in']
type str Specifies the type of layout [optional]

Example

from okta.models.ui_schema_object import UISchemaObject

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

# convert the object into a dict
ui_schema_object_dict = ui_schema_object_instance.to_dict()
# create an instance of UISchemaObject from a dict
ui_schema_object_from_dict = UISchemaObject.from_dict(ui_schema_object_dict)

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