mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.7 KiB
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 |
|
/tools/sdk/python/v2024/models/form-definition-dynamic-schema-request |
|
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
)