/** * Indicates the type of the payment request. For more information, see * [Configuring payment requests](https://developer.squareup.com/docs/invoices-api/create-publish-invoices#payment-requests). */ export declare const InvoiceRequestType: { readonly Balance: "BALANCE"; readonly Deposit: "DEPOSIT"; readonly Installment: "INSTALLMENT"; }; export type InvoiceRequestType = (typeof InvoiceRequestType)[keyof typeof InvoiceRequestType];