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,35 @@
---
id: beta-identity-exception-report-reference
title: IdentityExceptionReportReference
pagination_label: IdentityExceptionReportReference
sidebar_label: IdentityExceptionReportReference
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityExceptionReportReference', 'BetaIdentityExceptionReportReference']
slug: /tools/sdk/python/beta/models/identity-exception-report-reference
tags: ['SDK', 'Software Development Kit', 'IdentityExceptionReportReference', 'BetaIdentityExceptionReportReference']
---
# IdentityExceptionReportReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**task_result_id** | **str** | The id of the task result | [optional]
**report_name** | **str** | The name of the report | [optional]
}
## Example
```python
from sailpoint.beta.models.identity_exception_report_reference import IdentityExceptionReportReference
identity_exception_report_reference = IdentityExceptionReportReference(
task_result_id='',
report_name='My annual report'
)
```
[[Back to top]](#)