# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.CreateSubscriptionBody do @moduledoc """ Create Subscription Request Body """ @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.CreateSubscriptionBody do def decode(value, _options) do value end end