import type * as Square from "../index"; /** * A response to a request to update a `BreakType`. The response contains * the requested `BreakType` objects and might contain a set of `Error` objects if * the request resulted in errors. */ export interface UpdateBreakTypeResponse { /** The response object. */ breakType?: Square.BreakType; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }