# 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.ProvisionMockSubscriptionPayload do @moduledoc """ """ @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.ProvisionMockSubscriptionPayload do def decode(value, _options) do value end end