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,35 @@
---
id: non-employee-identity-reference-with-id
title: NonEmployeeIdentityReferenceWithId
pagination_label: NonEmployeeIdentityReferenceWithId
sidebar_label: NonEmployeeIdentityReferenceWithId
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'NonEmployeeIdentityReferenceWithId', 'NonEmployeeIdentityReferenceWithId']
slug: /tools/sdk/python/v3/models/non-employee-identity-reference-with-id
tags: ['SDK', 'Software Development Kit', 'NonEmployeeIdentityReferenceWithId', 'NonEmployeeIdentityReferenceWithId']
---
# NonEmployeeIdentityReferenceWithId
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | [**NonEmployeeIdentityDtoType**](non-employee-identity-dto-type) | | [optional]
**id** | **str** | Identity id | [optional]
}
## Example
```python
from sailpoint.v3.models.non_employee_identity_reference_with_id import NonEmployeeIdentityReferenceWithId
non_employee_identity_reference_with_id = NonEmployeeIdentityReferenceWithId(
type='IDENTITY',
id='5168015d32f890ca15812c9180835d2e'
)
```
[[Back to top]](#)