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: beta-kba-auth-response-item
title: KbaAuthResponseItem
pagination_label: KbaAuthResponseItem
sidebar_label: KbaAuthResponseItem
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'KbaAuthResponseItem', 'BetaKbaAuthResponseItem']
slug: /tools/sdk/python/beta/models/kba-auth-response-item
tags: ['SDK', 'Software Development Kit', 'KbaAuthResponseItem', 'BetaKbaAuthResponseItem']
---
# KbaAuthResponseItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**question_id** | **str** | The KBA question id | [optional]
**is_verified** | **bool** | Return true if verified | [optional]
}
## Example
```python
from sailpoint.beta.models.kba_auth_response_item import KbaAuthResponseItem
kba_auth_response_item = KbaAuthResponseItem(
question_id='089899f13a8f4da7824996191587bab9',
is_verified=True
)
```
[[Back to top]](#)