Documentation
    Preparing search index...

    Interface BillingInvoice

    interface BillingInvoice {
        billingMode: QUOTES_BILLING_MODE;
        commission: number;
        counterparty: BillingInvoiceCounterparty;
        createdAtTimestamp: number;
        creatorUserId?: string;
        documentId: string | null;
        fees: number;
        id: string;
        insuredName: string;
        isDeleted: boolean;
        lastModifiedTimestamp: number;
        lineItems: BillingInvoiceLineItem[];
        objectType: BILLING_INVOICE;
        organizationId: string;
        payee: BillingInvoiceParty;
        payer: BillingInvoiceParty;
        paymentDueDate: Date | null;
        paymentMode: QUOTES_PAYMENT_MODE;
        policyNumber: string;
        status: BILLING_INVOICE_STATUS;
        taxes: number;
        tenantId: string;
        tenantName?: string;
        totalAmountDue: number;
        totalAmountPaid: number;
        totalGrossPremiumDelta: number;
        transaction: Pick<PolicyTransaction, "id" | "type" | "effectiveDate">;
    }

    Hierarchy

    Index
    billingMode: QUOTES_BILLING_MODE
    commission: number
    counterparty: BillingInvoiceCounterparty
    createdAtTimestamp: number
    creatorUserId?: string
    documentId: string | null
    fees: number
    id: string
    insuredName: string
    isDeleted: boolean
    lastModifiedTimestamp: number
    lineItems: BillingInvoiceLineItem[]
    objectType: BILLING_INVOICE
    organizationId: string
    paymentDueDate: Date | null
    paymentMode: QUOTES_PAYMENT_MODE
    policyNumber: string
    taxes: number
    tenantId: string
    tenantName?: string
    totalAmountDue: number
    totalAmountPaid: number
    totalGrossPremiumDelta: number
    transaction: Pick<PolicyTransaction, "id" | "type" | "effectiveDate">