merge changes from main and pull the latest from python docs

This commit is contained in:
darrell-thobe-sp
2025-03-10 11:34:32 -04:00
3122 changed files with 95404 additions and 24060 deletions

View File

@@ -0,0 +1,33 @@
---
id: event-actor
title: EventActor
pagination_label: EventActor
sidebar_label: EventActor
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'EventActor', 'EventActor']
slug: /tools/sdk/python/v3/models/event-actor
tags: ['SDK', 'Software Development Kit', 'EventActor', 'EventActor']
---
# EventActor
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the actor that generated the event. | [optional]
}
## Example
```python
from sailpoint.v3.models.event_actor import EventActor
event_actor = EventActor(
name='System'
)
```
[[Back to top]](#)