Skip to main content

FormInstanceRecipient

Properties

NameTypeDescriptionNotes
idstrID is a unique identifier[optional]
typeEnum [ 'IDENTITY' ]Type is a FormInstanceRecipientType value IDENTITY FormInstanceRecipientIdentity[optional]
}

Example

from sailpoint.beta.models.form_instance_recipient import FormInstanceRecipient

form_instance_recipient = FormInstanceRecipient(
id='00000000-0000-0000-0000-000000000000',
type='IDENTITY'
)

[Back to top]