import type * as Square from "../index"; /** * The response returned by the `CreateInvoice` request. */ export interface CreateInvoiceResponse { /** The newly created invoice. */ invoice?: Square.Invoice; /** Information about errors encountered during the request. */ errors?: Square.Error_[]; }