Properties of the UI schema
| 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 | object | [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] |
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)