import type * as Square from "../../../../index"; /** * @example * { * jobId: "job_id", * job: { * title: "Cashier 1", * isTipEligible: true * } * } */ export interface UpdateJobRequest { /** The ID of the job to update. */ jobId: string; /** * The job with the updated fields, either `title`, `is_tip_eligible`, or both. Only changed fields need * to be included in the request. Optionally include `version` to enable optimistic concurrency control. */ job: Square.Job; }