View Source ExOAPI.Stripe.Schemas.AccountCapabilityRequirements (exoapi_stripe v0.1.4)

::alternatives :: ExOAPI.Stripe.Schemas.AccountRequirementsAlternative

:current_deadline :: :integer

Date by which the fields in currently_due must be collected to keep the capability enabled for the account. These fields may disable the capability sooner if the next threshold is reached before they are collected.

::currently_due :: :string

:disabled_reason :: :string

If the capability is disabled, this string describes why. Can be requirements.past_due, requirements.pending_verification, listed, platform_paused, rejected.fraud, rejected.listed, rejected.terms_of_service, rejected.other, under_review, or other.

rejected.unsupported_business means that the account's business is not supported by the capability. For example, payment methods may restrict the businesses they support in their terms of service:

If you believe that the rejection is in error, please contact support at https://support.stripe.com/contact/ for assistance.

::errors :: ExOAPI.Stripe.Schemas.AccountRequirementsError

::eventually_due :: :string

::past_due :: :string

::pending_verification :: :string

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.AccountCapabilityRequirements{
  alternatives: [ExOAPI.Stripe.Schemas.AccountRequirementsAlternative.t()],
  current_deadline: integer() | nil,
  currently_due: [String.t()] | nil,
  disabled_reason: String.t() | nil,
  errors: [ExOAPI.Stripe.Schemas.AccountRequirementsError.t()],
  eventually_due: [String.t()] | nil,
  past_due: [String.t()] | nil,
  pending_verification: [String.t()] | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()