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

:delay_days :: :integer

The number of days charges for the account will be held before being paid out.

:interval :: :string

How frequently funds will be paid out. One of manual (payouts only created via API call), daily, weekly, or monthly.

:monthly_anchor :: :integer

The day of the month funds will be paid out. Only shown if interval is monthly. Payouts scheduled between the 29th and 31st of the month are sent on the last day of shorter months.

:weekly_anchor :: :string

The day of the week funds will be paid out, of the style 'monday', 'tuesday', etc. Only shown if interval is weekly.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.TransferSchedule{
  delay_days: integer() | nil,
  interval: String.t() | nil,
  monthly_anchor: integer() | nil,
  weekly_anchor: 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()