module:models/PaymentScheduleVo()

new module:models/PaymentScheduleVo()

This class subject to change without prior notice, Please dont use this class directly.

Constructs a new PaymentScheduleVo. The schedule for the payments that are created as part of a payment setup like recurring payment or autopay.

Members

static, readonly PaymentAmountTypeEnum :String

Allowed values for the payment_amount_type property.

Properties:
Name Type Description
current_balance String

value: "current_balance"

minimum_payment_due String

value: "minimum_payment_due"

past_payment_due String

value: "past_payment_due"

statement_balance String

value: "statement_balance"

other String

value: "other"

static, readonly PaymentRecurringTypeEnum :String

Allowed values for the payment_recurring_type property.

Properties:
Name Type Description
daily String

value: "daily"

weekly String

value: "weekly"

monthly String

value: "monthly"

semi_monthly String

value: "semi_monthly"

bi_weekly String

value: "bi_weekly"

quarterly String

value: "quarterly"

half_yearly String

value: "half_yearly"

annual String

value: "annual"

inner payment_amount_type :module:models/PaymentScheduleVo.PaymentAmountTypeEnum

The amount type that is used to set the amount for payments created as part of a recurring payment or autopay setup.

inner payment_defer_days :String

The number of days from the bill due date that the customer wishes to delay the autopay payment by.

inner payment_end_date :String

The date by which the last payment will be drafted as part of a recurring payment setup. This is to be specified in the ISO8601 full-date format, namely, YYYY-MM-DD.

inner payment_limit_amount :String

The upper limit for the payment amount in the case of recurring or autopay payments.

inner payment_plan_id :String

The reference to the payment plan, offered by the biller, that is used to set up the recurring payment. The list of payment plans offered is published as part of the biller set-up.

inner payment_recurring_count :String

The maximum number of payments that can be created as part of a recurring payment setup.

inner payment_recurring_type :module:models/PaymentScheduleVo.PaymentRecurringTypeEnum

The frequency of the payments created as part of a payment setup.

inner payment_start_date :String

The date on which the first payment will be drafted as part of a recurring payment setup. This is to be specified in the ISO8601 full-date format, namely, YYYY-MM-DD.

Methods

static constructFromObject(data, obj) → {module:models/PaymentScheduleVo}

Constructs a PaymentScheduleVo from a plain JavaScript object, optionally creating a new instance. Copies all relevant properties from data to obj if supplied or a new instance if not.

Parameters:
Name Type Description
data Object

The plain JavaScript object bearing properties of interest.

obj module:models/PaymentScheduleVo

Optional instance to populate.

Returns:
module:models/PaymentScheduleVo -

The populated PaymentScheduleVo instance.