Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/FormDefinitionDynamicSchemaRequest.md
2025-02-20 12:59:19 -05:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-form-definition-dynamic-schema-request FormDefinitionDynamicSchemaRequest FormDefinitionDynamicSchemaRequest FormDefinitionDynamicSchemaRequest pythonsdk
python
Python
sdk
FormDefinitionDynamicSchemaRequest
V2024FormDefinitionDynamicSchemaRequest
/tools/sdk/python/v2024/models/form-definition-dynamic-schema-request
SDK
Software Development Kit
FormDefinitionDynamicSchemaRequest
V2024FormDefinitionDynamicSchemaRequest

FormDefinitionDynamicSchemaRequest

Properties

Name Type Description Notes
attributes FormDefinitionDynamicSchemaRequestAttributes [optional]
description str Description is the form definition dynamic schema description text [optional]
id str ID is a unique identifier [optional]
type str Type is the form definition dynamic schema type [optional]
version_number int VersionNumber is the form definition dynamic schema version number [optional]
}

Example

from sailpoint.v2024.models.form_definition_dynamic_schema_request import FormDefinitionDynamicSchemaRequest

form_definition_dynamic_schema_request = FormDefinitionDynamicSchemaRequest(
attributes=sailpoint.v2024.models.form_definition_dynamic_schema_request_attributes.FormDefinitionDynamicSchemaRequest_attributes(
                    form_definition_id = '00000000-0000-0000-0000-000000000000', ),
description='A description',
id='00000000-0000-0000-0000-000000000000',
type='action',
version_number=1
)

[Back to top]