Update python SDK docs: 15446993818

This commit is contained in:
developer-relations-sp
2025-06-04 16:00:21 +00:00
parent 86e941b1f5
commit 727869ffb2
18 changed files with 294 additions and 16 deletions

View File

@@ -0,0 +1,33 @@
---
id: v2025-import-entitlements-request
title: ImportEntitlementsRequest
pagination_label: ImportEntitlementsRequest
sidebar_label: ImportEntitlementsRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ImportEntitlementsRequest', 'V2025ImportEntitlementsRequest']
slug: /tools/sdk/python/v2025/models/import-entitlements-request
tags: ['SDK', 'Software Development Kit', 'ImportEntitlementsRequest', 'V2025ImportEntitlementsRequest']
---
# ImportEntitlementsRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**file** | **bytearray** | The CSV file containing the source entitlements to aggregate. | [optional]
}
## Example
```python
from sailpoint.v2025.models.import_entitlements_request import ImportEntitlementsRequest
import_entitlements_request = ImportEntitlementsRequest(
file=bytes(b'blah')
)
```
[[Back to top]](#)