Increase.Accounts.Account.Loan (Increase v1.0.0)

Copy Markdown View Source

The Account's loan-related information, if the Account is a loan account.

Fields

  • credit_limit - The maximum amount of money that can be borrowed on the Account.
  • grace_period_days - The number of days after the statement date that the Account can be past due before being considered delinquent.
  • maturity_date - The date on which the loan matures.
  • statement_day_of_month - The day of the month on which the loan statement is generated.
  • statement_payment_type - The type of payment for the loan.

Summary

Types

t()

@type t() :: %Increase.Accounts.Account.Loan{
  credit_limit: integer(),
  grace_period_days: integer(),
  maturity_date: Date.t() | nil,
  statement_day_of_month: integer(),
  statement_payment_type: String.t()
}