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,38 @@
---
id: v2024-access-request-context
title: AccessRequestContext
pagination_label: AccessRequestContext
sidebar_label: AccessRequestContext
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccessRequestContext', 'V2024AccessRequestContext']
slug: /tools/sdk/python/v2024/models/access-request-context
tags: ['SDK', 'Software Development Kit', 'AccessRequestContext', 'V2024AccessRequestContext']
---
# AccessRequestContext
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**context_attributes** | [**[]ContextAttributeDto**](context-attribute-dto) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.access_request_context import AccessRequestContext
access_request_context = AccessRequestContext(
context_attributes=[
sailpoint.v2024.models.context_attribute_dto.ContextAttributeDto(
attribute = 'location',
value = Austin,
derived = False, )
]
)
```
[[Back to top]](#)