# 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.UpdateSubscriptionPayload do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"plan_or_price", :"return_to" ] @type t :: %__MODULE__{ :"plan_or_price" => String.t, :"return_to" => String.t | nil } end defimpl Poison.Decoder, for: Ory.Model.UpdateSubscriptionPayload do def decode(value, _options) do value end end