import type * as Square from "../index"; /** * The hourly wage rate used to compensate an employee for this shift. * * Deprecated at Square API version 2025-05-21. See the [migration notes](https://developer.squareup.com/docs/labor-api/what-it-does#migration-notes). */ export interface ShiftWage { /** The name of the job performed during this shift. */ 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; /** * The id of the job performed during this shift. Square * labor-reporting UIs might group shifts together by id. */ jobId?: string; /** Whether team members are eligible for tips when working this job. */ tipEligible?: boolean | null; }