add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
---
id: v2025-search-form-definitions-by-tenant400-response
title: SearchFormDefinitionsByTenant400Response
pagination_label: SearchFormDefinitionsByTenant400Response
sidebar_label: SearchFormDefinitionsByTenant400Response
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SearchFormDefinitionsByTenant400Response', 'V2025SearchFormDefinitionsByTenant400Response']
slug: /tools/sdk/python/v2025/models/search-form-definitions-by-tenant400-response
tags: ['SDK', 'Software Development Kit', 'SearchFormDefinitionsByTenant400Response', 'V2025SearchFormDefinitionsByTenant400Response']
---
# SearchFormDefinitionsByTenant400Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**detail_code** | **str** | | [optional]
**messages** | [**[]ErrorMessage**](error-message) | | [optional]
**status_code** | **int** | | [optional]
**tracking_id** | **str** | | [optional]
}
## Example
```python
from sailpoint.v2025.models.search_form_definitions_by_tenant400_response import SearchFormDefinitionsByTenant400Response
search_form_definitions_by_tenant400_response = SearchFormDefinitionsByTenant400Response(
detail_code='',
messages=[
sailpoint.v2025.models.error_message_is_the_standard_api_error_response_message_type/.ErrorMessage is the standard API error response message type.(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'This is an error', )
],
status_code=56,
tracking_id=''
)
```
[[Back to top]](#)