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