# 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.InternalProvisionMockSubscription do @moduledoc """ Internal Provision Mock Subscription Request Body """ @derive [Poison.Encoder] defstruct [ :identity_id, :plan_or_price ] @type t :: %__MODULE__{ :identity_id => String.t, :plan_or_price => String.t } end defimpl Poison.Decoder, for: Ory.Model.InternalProvisionMockSubscription do def decode(value, _options) do value end end