Skip to main content

CampaignAlert

Properties

NameTypeDescriptionNotes
levelEnum [ 'ERROR', 'WARN', 'INFO' ]Denotes the level of the message[optional]
localizations[]ErrorMessageDto[optional]
}

Example

from sailpoint.v2024.models.campaign_alert import CampaignAlert

campaign_alert = CampaignAlert(
level='ERROR',
localizations=[
sailpoint.v2024.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]