internal/httpclient/docs/JsonPatch.md
| Name | Type | Description | Notes |
|---|---|---|---|
| From | Pointer to string | This field is used together with operation "move" and uses JSON Pointer notation. Learn more about JSON Pointers. | [optional] |
| Op | string | The operation to be performed. One of "add", "remove", "replace", "move", "copy", or "test". | |
| Path | string | The path to the target path. Uses JSON pointer notation. Learn more about JSON Pointers. | |
| Value | Pointer to interface{} | The value to be used within the operations. Learn more about JSON Pointers. | [optional] |
func NewJsonPatch(op string, path string, ) *JsonPatch
NewJsonPatch instantiates a new JsonPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewJsonPatchWithDefaults() *JsonPatch
NewJsonPatchWithDefaults instantiates a new JsonPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *JsonPatch) GetFrom() string
GetFrom returns the From field if non-nil, zero value otherwise.
func (o *JsonPatch) GetFromOk() (*string, bool)
GetFromOk returns a tuple with the From field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *JsonPatch) SetFrom(v string)
SetFrom sets From field to given value.
func (o *JsonPatch) HasFrom() bool
HasFrom returns a boolean if a field has been set.
func (o *JsonPatch) GetOp() string
GetOp returns the Op field if non-nil, zero value otherwise.
func (o *JsonPatch) GetOpOk() (*string, bool)
GetOpOk returns a tuple with the Op field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *JsonPatch) SetOp(v string)
SetOp sets Op field to given value.
func (o *JsonPatch) GetPath() string
GetPath returns the Path field if non-nil, zero value otherwise.
func (o *JsonPatch) GetPathOk() (*string, bool)
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *JsonPatch) SetPath(v string)
SetPath sets Path field to given value.
func (o *JsonPatch) GetValue() interface{}
GetValue returns the Value field if non-nil, zero value otherwise.
func (o *JsonPatch) GetValueOk() (*interface{}, bool)
GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *JsonPatch) SetValue(v interface{})
SetValue sets Value field to given value.
func (o *JsonPatch) HasValue() bool
HasValue returns a boolean if a field has been set.
func (o *JsonPatch) SetValueNil(b bool)
SetValueNil sets the value for Value to be an explicit nil
func (o *JsonPatch) UnsetValue()
UnsetValue ensures that no value is present for Value, not even an explicit nil