import type * as Square from "../../../../index"; /** * @example * { * job: { * title: "Cashier", * isTipEligible: true * }, * idempotencyKey: "idempotency-key-0" * } */ export interface CreateJobRequest { /** The job to create. The `title` field is required and `is_tip_eligible` defaults to true. */ job: Square.Job; /** * A unique identifier for the `CreateJob` request. Keys can be any valid string, * but must be unique for each request. For more information, see * [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-patterns/idempotency). */ idempotencyKey: string; }