Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 809 Bytes

File metadata and controls

24 lines (17 loc) · 809 Bytes

PatchOperation

Properties

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]

Example

import { PatchOperation } from 'launchdarkly-api-typescript';

const instance: PatchOperation = {
    op,
    path,
    value,
};

[Back to Model list] [Back to API list] [Back to README]