Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

team-member-wage.md

File metadata and controls

30 lines (21 loc) · 1.14 KB

Team Member Wage

The hourly wage rate that a team member earns on a Shift for doing the job specified by the title property of this object.

Structure

TeamMemberWage

Fields

Name Type Tags Description
id string | undefined Optional The UUID for this object.
teamMemberId string | undefined Optional The TeamMember that this wage is assigned to.
title string | undefined Optional The job title that this wage relates to.
hourlyRate Money | undefined Optional Represents an amount of money. Money fields can be signed or unsigned.
Fields that do not explicitly define whether they are signed or unsigned are
considered unsigned and can only hold positive amounts. For signed fields, the
sign of the value indicates the purpose of the money transfer. See
Working with Monetary Amounts
for more information.

Example (as JSON)

{
  "id": null,
  "team_member_id": null,
  "title": null,
  "hourly_rate": null
}