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