export Invoice

interface Invoice {
    created_at?: string;
    external_id?: null | string;
    external_url?: null | string;
    id?: null | string;
    invoice_amount?: Amount;
    line_items?: null | LineItem[];
    mozaic_id?: null | string;
    object?: null | string;
    receiving_account?: ReceivingAccountInfo;
    short_id?: null | string;
    status?: null | string;
    testmode?: boolean;
    user_id?: null | string;
    utilized_amount?: Amount;
}

Properties

created_at?: string
external_id?: null | string
external_url?: null | string
id?: null | string
invoice_amount?: Amount
line_items?: null | LineItem[]
mozaic_id?: null | string
object?: null | string

The name of this object

receiving_account?: ReceivingAccountInfo
short_id?: null | string
status?: 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.

user_id?: null | string
utilized_amount?: Amount