Skip to main content

Approval1

Properties

NameTypeDescriptionNotes
comments[]ApprovalComment2[optional]
modifieddatetimeA date-time in ISO-8601 format[optional]
ownerActivityIdentity[optional]
resultstrThe result of the approval[optional]
attribute_requestAttributeRequest[optional]
sourceAccountSource[optional]
}

Example

from sailpoint.v2024.models.approval1 import Approval1

approval1 = Approval1(
comments=[
sailpoint.v2024.models.approval_comment_2.ApprovalComment_2(
comment = 'This request was autoapproved by our automated ETS subscriber.',
commenter = 'Automated AR Approval',
date = '2018-06-25T20:22:28.104Z', )
],
modified='2018-06-25T20:22:28.104Z',
owner=,
result='Finished',
attribute_request=sailpoint.v2024.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, ),
source=
)

[Back to top]