Sha256: 8553403be195507234af21f6034c25f42c02a1d7395ac5ca13cdfc1d1c378f42
Contents?: true
Size: 1.02 KB
Versions: 103
Compression:
Stored size: 1.02 KB
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 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](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | | | **value** | **Object** | The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::JsonPatch.new( from: /name, op: replace, path: /name, value: foobar ) ```
Version data entries
103 entries across 103 versions & 1 rubygems
Version | Path |
---|---|
ory-client-1.1.14 | docs/JsonPatch.md |
ory-client-1.1.13 | docs/JsonPatch.md |
ory-client-1.1.11 | docs/JsonPatch.md |