# 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.InternalProvisionMockSubscription do @moduledoc """ Internal Provision Mock Subscription Request Body """ @derive Jason.Encoder defstruct [ :currency, :identity_id, :interval, :plan ] @type t :: %__MODULE__{ :currency => String.t, :identity_id => String.t, :interval => String.t, :plan => String.t } def decode(value) do value end end