Represents a customer invoice associated with a purchase order.

CustomerInvoice

interface CustomerInvoice {
    content: string;
    purchaseOrderNumber: string;
}

Properties

content: string

The Base64encoded customer invoice.

CustomerInvoice

purchaseOrderNumber: string

The purchase order number for this order.

CustomerInvoice