Update to python SDK docs: 14926960824

This commit is contained in:
developer-relations-sp
2025-05-09 10:30:37 +00:00
parent f308ff9041
commit c5ed7d487d
19 changed files with 1392 additions and 107 deletions

View File

@@ -0,0 +1,33 @@
---
id: v2024-send-classify-machine-account200-response
title: SendClassifyMachineAccount200Response
pagination_label: SendClassifyMachineAccount200Response
sidebar_label: SendClassifyMachineAccount200Response
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SendClassifyMachineAccount200Response', 'V2024SendClassifyMachineAccount200Response']
slug: /tools/sdk/python/v2024/models/send-classify-machine-account200-response
tags: ['SDK', 'Software Development Kit', 'SendClassifyMachineAccount200Response', 'V2024SendClassifyMachineAccount200Response']
---
# SendClassifyMachineAccount200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**is_machine** | **bool** | Indicates if account is classified as machine | [optional] [default to False]
}
## Example
```python
from sailpoint.v2024.models.send_classify_machine_account200_response import SendClassifyMachineAccount200Response
send_classify_machine_account200_response = SendClassifyMachineAccount200Response(
is_machine=True
)
```
[[Back to top]](#)