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