| Name | Type | Description | Notes |
|---|---|---|---|
| op | string | The type of operation to perform | [default to undefined] |
| path | string | A JSON Pointer string specifying the part of the document to operate on | [default to undefined] |
| value | any | A JSON value used in "add", "replace", and "test" operations | [optional] [default to undefined] |
import { PatchOperation } from 'launchdarkly-api-typescript';
const instance: PatchOperation = {
op,
path,
value,
};