Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 599 Bytes

PatchOperation.md

File metadata and controls

22 lines (16 loc) · 599 Bytes

LaunchDarklyApi::PatchOperation

Properties

Name Type Description Notes
op String The type of operation to perform
path String A JSON Pointer string specifying the part of the document to operate on
value Object A JSON value used in "add", "replace", and "test" operations [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PatchOperation.new(
  op: replace,
  path: /exampleField,
  value: new example value
)