Skip to main content

Campaignalert

Properties

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

Example

from sailpoint.certification_campaigns.models.campaignalert import Campaignalert

campaignalert = Campaignalert(
level='ERROR',
localizations=[
sailpoint.certification_campaigns.models.error_message_dto.Error Message Dto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)

[Back to top]