# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.CustomerPortalAvailability do @moduledoc """ CustomerPortalAvailability describes whether the Stripe customer portal is available for the logged-in user (or a workspace they access). """ @derive Jason.Encoder defstruct [ :available, :reason ] @type t :: %__MODULE__{ :available => boolean(), :reason => String.t | nil } def decode(value) do value end end