export PaymentCycleResponse

interface PaymentCycleResponse {
    account_id?: null | string;
    accounting_from?: null | string;
    accounting_to?: null | string;
    amount?: Amount;
    created_at?: string;
    fee_direction?: FeeDirection;
    fees?: Amount;
    from?: BasicContact;
    id?: null | string;
    invoice?: Invoice;
    invoice_id?: null | string;
    memo?: null | string;
    name?: null | string;
    object?: null | string;
    original_amount?: Amount;
    payment_date?: null | string;
    short_id?: null | string;
    status?: PaymentCycleStatus;
    testmode?: boolean;
    total_draft_entries?: number;
    total_entries?: number;
    total_failed_entries?: number;
    total_pending_entries?: number;
    total_returned?: number;
    total_success_entries?: number;
}

Properties

account_id?: null | string
accounting_from?: null | string

Accounting start date

accounting_to?: null | string

Accounting end date

amount?: Amount
created_at?: string
fee_direction?: FeeDirection
fees?: Amount
id?: null | string
invoice?: Invoice
invoice_id?: null | string
memo?: null | string
name?: null | string
object?: null | string

The name of this object

original_amount?: Amount
payment_date?: null | string
short_id?: null | string
testmode?: boolean

If true, the request is in test mode, and will be processed as a test transaction. test bank accounts and test debit cards can be used.

total_draft_entries?: number
total_entries?: number
total_failed_entries?: number
total_pending_entries?: number
total_returned?: number
total_success_entries?: number