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,33 @@
---
id: v2024-identity-snapshot-summary-response
title: IdentitySnapshotSummaryResponse
pagination_label: IdentitySnapshotSummaryResponse
sidebar_label: IdentitySnapshotSummaryResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentitySnapshotSummaryResponse', 'V2024IdentitySnapshotSummaryResponse']
slug: /tools/sdk/python/v2024/models/identity-snapshot-summary-response
tags: ['SDK', 'Software Development Kit', 'IdentitySnapshotSummaryResponse', 'V2024IdentitySnapshotSummaryResponse']
---
# IdentitySnapshotSummaryResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**snapshot** | **str** | the date when the identity record was created | [optional]
}
## Example
```python
from sailpoint.v2024.models.identity_snapshot_summary_response import IdentitySnapshotSummaryResponse
identity_snapshot_summary_response = IdentitySnapshotSummaryResponse(
snapshot='2007-03-01T13:00:00.000Z'
)
```
[[Back to top]](#)