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

description: The Pause Collection settings determine how we will pause collection for this subscription and for how long the subscription should be paused.

:behavior :: :string

The payment collection behavior for this subscription while paused. One of keep_as_draft, mark_uncollectible, or void.

:resumes_at :: :integer

The time after which the subscription will resume collecting payments.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.SubscriptionsResourcePauseCollection{
  behavior: (:void | :mark_uncollectible | :keep_as_draft) | nil,
  resumes_at: integer() | nil
}

Link to this section Functions

Link to this function

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

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