Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 651 Bytes

ScimPatchOperation.md

File metadata and controls

21 lines (14 loc) · 651 Bytes

TalonOne::ScimPatchOperation

Properties

Name Type Description Notes
op String The method that should be used in the operation.
path String The path specifying the attribute that should be updated. [optional]
value String The value that should be updated. Required if `op` is `add` or `replace`. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::ScimPatchOperation.new(op: null,
                                 path: null,
                                 value: null)