import type * as Square from "../index"; /** * Represents a response from an update request containing the updated `WageSetting` object * or error messages. */ export interface UpdateWageSettingResponse { /** The successfully updated `WageSetting` object. */ wageSetting?: Square.WageSetting; /** The errors that occurred during the request. */ errors?: Square.Error_[]; }