import type * as Square from "../index"; export interface ListCashDrawerShiftEventsResponse { /** * Opaque cursor for fetching the next page. Cursor is not present in * the last page of results. */ cursor?: string; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * All of the events (payments, refunds, etc.) for a cash drawer during * the shift. */ cashDrawerShiftEvents?: Square.CashDrawerShiftEvent[]; }