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,40 @@
---
id: beta-campaign-alert
title: CampaignAlert
pagination_label: CampaignAlert
sidebar_label: CampaignAlert
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CampaignAlert', 'BetaCampaignAlert']
slug: /tools/sdk/python/beta/models/campaign-alert
tags: ['SDK', 'Software Development Kit', 'CampaignAlert', 'BetaCampaignAlert']
---
# CampaignAlert
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**level** | **Enum** [ 'ERROR', 'WARN', 'INFO' ] | Denotes the level of the message | [optional]
**localizations** | [**[]ErrorMessageDto**](error-message-dto) | | [optional]
}
## Example
```python
from sailpoint.beta.models.campaign_alert import CampaignAlert
campaign_alert = CampaignAlert(
level='ERROR',
localizations=[
sailpoint.beta.models.error_message_dto.ErrorMessageDto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)
```
[[Back to top]](#)