import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the `BatchRetrieveOrders` endpoint. */ export interface BatchGetOrdersResponse { /** The requested orders. This will omit any requested orders that do not exist. */ orders?: Square.Order[]; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }