Sha256: 19541bb999ee13f8cdba4122a79339b4b9dc8f2899b32eeaf847733a007667ec

Contents?: true

Size: 780 Bytes

Versions: 51

Compression:

Stored size: 780 Bytes

Contents

# OryClient::JsonPatch

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **from** | **String** | This field is used together with operation \"move\" and uses JSON Pointer notation.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional] |
| **op** | **String** | The JSON Patch operation |  |
| **path** | **String** | The JSON Pointer to the target key |  |
| **value** | **Object** | The value to be used. Only available for `add` and `replace` operations. | [optional] |

## Example

```ruby
require 'ory-client'

instance = OryClient::JsonPatch.new(
  from: /name,
  op: replace,
  path: /services/identity/config/smtp/from_name,
  value: foobar
)
```

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
ory-client-0.2.0.alpha23 docs/JsonPatch.md
ory-client-0.2.0.alpha22 docs/JsonPatch.md
ory-client-0.2.0.alpha21 docs/JsonPatch.md
ory-client-0.2.0.alpha20 docs/JsonPatch.md
ory-client-0.2.0.alpha19 docs/JsonPatch.md
ory-client-0.2.0.alpha18 docs/JsonPatch.md
ory-client-0.2.0.alpha16 docs/JsonPatch.md
ory-client-0.2.0.alpha15 docs/JsonPatch.md
ory-client-0.2.0.alpha14 docs/JsonPatch.md
ory-client-0.2.0.alpha4 docs/JsonPatch.md
ory-client-0.2.0.alpha2 docs/JsonPatch.md