import type * as Square from "../index"; /** * Represents an update request for a `TeamMember` object. */ export interface UpdateTeamMemberRequest { /** * The team member fields to add, change, or clear. Fields can be cleared using a null value. To update * `wage_setting.job_assignments`, you must provide the complete list of job assignments. If needed, call * [ListJobs](api-endpoint:Team-ListJobs) to get the required `job_id` values. */ teamMember?: Square.TeamMember; }