import type * as Square from "../index"; /** * The response to a request for a set of `BreakType` objects. The response contains * the requested `BreakType` objects and might contain a set of `Error` objects if * the request resulted in errors. */ export interface ListBreakTypesResponse { /** A page of `BreakType` results. */ breakTypes?: Square.BreakType[]; /** * The value supplied in the subsequent request to fetch the next page * of `BreakType` results. */ cursor?: string; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }