import type * as Square from "../index"; /** * The hourly wage rate that an employee earns on a `Shift` for doing the job specified by the `title` property of this object. Deprecated at version 2020-08-26. Use [TeamMemberWage](entity:TeamMemberWage). */ export interface EmployeeWage { /** The UUID for this object. */ id?: string; /** The `Employee` that this wage is assigned to. */ employeeId?: string | null; /** The job title that this wage relates to. */ title?: string | null; /** * Can be a custom-set hourly wage or the calculated effective hourly * wage based on the annual wage and hours worked per week. */ hourlyRate?: Square.Money; }