starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-form-definition-file-upload-response
title: FormDefinitionFileUploadResponse
pagination_label: FormDefinitionFileUploadResponse
sidebar_label: FormDefinitionFileUploadResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormDefinitionFileUploadResponse', 'V2024FormDefinitionFileUploadResponse']
slug: /tools/sdk/python/v2024/models/form-definition-file-upload-response
tags: ['SDK', 'Software Development Kit', 'FormDefinitionFileUploadResponse', 'V2024FormDefinitionFileUploadResponse']
---
# FormDefinitionFileUploadResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**created** | **str** | Created is the date the file was uploaded | [optional]
**file_id** | **str** | fileId is a unique ULID that serves as an identifier for the form definition file | [optional]
**form_definition_id** | **str** | FormDefinitionID is a unique guid identifying this form definition | [optional]
}
## Example
```python
from sailpoint.v2024.models.form_definition_file_upload_response import FormDefinitionFileUploadResponse
form_definition_file_upload_response = FormDefinitionFileUploadResponse(
created='2023-07-12T20:14:57.74486Z',
file_id='01FHZXHK8PTP9FVK99Z66GXQTX.png',
form_definition_id='00000000-0000-0000-0000-000000000000'
)
```
[[Back to top]](#)