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,51 @@
---
id: v2025-approval1
title: Approval1
pagination_label: Approval1
sidebar_label: Approval1
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Approval1', 'V2025Approval1']
slug: /tools/sdk/python/v2025/models/approval1
tags: ['SDK', 'Software Development Kit', 'Approval1', 'V2025Approval1']
---
# Approval1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**comments** | [**[]ApprovalComment2**](approval-comment2) | | [optional]
**modified** | **datetime** | A date-time in ISO-8601 format | [optional]
**owner** | [**ActivityIdentity**](activity-identity) | | [optional]
**result** | **str** | The result of the approval | [optional]
**attribute_request** | [**AttributeRequest**](attribute-request) | | [optional]
**source** | [**AccountSource**](account-source) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.approval1 import Approval1
approval1 = Approval1(
comments=[
sailpoint.v2025.models.approval_comment_2.ApprovalComment_2(
comment = 'This request was autoapproved by our automated ETS subscriber.',
commenter = 'Automated AR Approval',
date = '2018-06-25T20:22:28.104Z', )
],
modified='2018-06-25T20:22:28.104Z',
owner=,
result='Finished',
attribute_request=sailpoint.v2025.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, ),
source=
)
```
[[Back to top]](#)