# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule Ory.Model.PatchDocument do @moduledoc """ A JSONPatch document as defined by RFC 6902 """ @derive [Poison.Encoder] defstruct [ :from, :op, :path, :value ] @type t :: %__MODULE__{ :from => String.t | nil, :op => String.t, :path => String.t, :value => map() | nil } end defimpl Poison.Decoder, for: Ory.Model.PatchDocument do def decode(value, _options) do value end end