Skip to main content

Approvalattributesrequest

Approval Attributes Request

Properties

NameTypeDescriptionNotes
additional_attributesmap[string]strAdditional attributes as key-value pairs that are not part of the standard schema but can be included for custom data.[optional]
commentstrComment associated with the request.[optional]
remove_attribute_keys[]strList of attribute keys to be removed.[optional]
}

Example

from sailpoint.approvals.models.approvalattributesrequest import Approvalattributesrequest

approvalattributesrequest = Approvalattributesrequest(
additional_attributes={"additionalProp1":"string","additionalProp2":"string","additionalProp3":"string"},
comment='comment',
remove_attribute_keys=["string"]
)

[Back to top]