quickbooks-api
Version:
A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.
22 lines (20 loc) • 439 B
text/typescript
// Imports
import { DeliveryType, DateTime } from '../types';
/**
* Delivery Info
*
* @description The delivery info for the invoice
*/
export interface DeliveryInfo {
/**
* Type of the delivery. Used to confirm that email has been sent via the send operation.
* Valid values currently include: Email.
* @readonly
*/
DeliveryType: DeliveryType;
/**
* Delivery date and time.
* @readonly
*/
DeliveryTime: DateTime;
}