# PatchOperation

A single change that needs to be made to a resource

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**from** | **string** | The field from where a value should be moved, when using move | [optional] [default to undefined]
**op** | **string** | The change to perform | [default to undefined]
**path** | **string** | The field to perform the operation on | [default to undefined]
**value** | **object** | The value of the field, can be null | [optional] [default to undefined]

## Example

```typescript
import { PatchOperation } from './api';

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

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
