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,36 @@
---
id: scheduled-search-all-of-owner
title: ScheduledSearchAllOfOwner
pagination_label: ScheduledSearchAllOfOwner
sidebar_label: ScheduledSearchAllOfOwner
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ScheduledSearchAllOfOwner', 'ScheduledSearchAllOfOwner']
slug: /tools/sdk/python/v3/models/scheduled-search-all-of-owner
tags: ['SDK', 'Software Development Kit', 'ScheduledSearchAllOfOwner', 'ScheduledSearchAllOfOwner']
---
# ScheduledSearchAllOfOwner
The owner of the scheduled search
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'IDENTITY' ] | The type of object being referenced | [required]
**id** | **str** | The ID of the referenced object | [required]
}
## Example
```python
from sailpoint.v3.models.scheduled_search_all_of_owner import ScheduledSearchAllOfOwner
scheduled_search_all_of_owner = ScheduledSearchAllOfOwner(
type='IDENTITY',
id='2c9180867624cbd7017642d8c8c81f67'
)
```
[[Back to top]](#)