# NOTE: This file is auto generated by OpenAPI Generator 7.2.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.UpdateSubscriptionBody do @moduledoc """ Update Subscription Request Body """ @derive Jason.Encoder defstruct [ :interval, :plan, :return_to ] @type t :: %__MODULE__{ :interval => String.t, :plan => String.t, :return_to => String.t | nil } def decode(value) do value end end