Skip to main content

SubscriptionpatchrequestInner

A JSONPatch Operation as defined by RFC 6902 - JSON Patch

Properties

NameTypeDescriptionNotes
opEnum [ 'add', 'remove', 'replace', 'move', 'copy' ]The operation to be performed[required]
pathstrA string JSON Pointer representing the target path to an element to be affected by the operation[required]
valueSubscriptionpatchrequestInnerValue[optional]
}

Example

from sailpoint.triggers.models.subscriptionpatchrequest_inner import SubscriptionpatchrequestInner

subscriptionpatchrequest_inner = SubscriptionpatchrequestInner(
op='replace',
path='/description',
value=New description
)

[Back to top]