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