import type * as Square from "../index"; /** * Describes an ad hoc item and price to generate a quick pay checkout link. * For more information, * see [Quick Pay Checkout](https://developer.squareup.com/docs/checkout-api/quick-pay-checkout). */ export interface QuickPay { /** The ad hoc item name. In the resulting `Order`, this name appears as the line item name. */ name: string; /** The price of the item. */ priceMoney: Square.Money; /** The ID of the business location the checkout is associated with. */ locationId: string; }