import * as z from "zod/v3"; /** * Request body for creating a job. */ export type JobsCreateRequestBody = { /** * The job title. */ title: string | null; /** * The date when the employee was hired or rehired for the job. */ hireDate: string; /** * Whether the employee owns at least 2% of the company. */ twoPercentShareholder?: boolean | undefined; /** * Whether this job is eligible for workers' compensation coverage in the state of Washington (WA). */ stateWcCovered?: boolean | null | undefined; /** * The risk class code for workers' compensation in Washington state. Please visit [Washington state's Risk Class page](https://www.lni.wa.gov/insurance/rates-risk-classes/risk-classes-for-workers-compensation/risk-class-lookup#/) to learn more. */ stateWcClassCode?: string | null | undefined; }; /** @internal */ export type JobsCreateRequestBody$Outbound = { title: string | null; hire_date: string; two_percent_shareholder?: boolean | undefined; state_wc_covered?: boolean | null | undefined; state_wc_class_code?: string | null | undefined; }; /** @internal */ export declare const JobsCreateRequestBody$outboundSchema: z.ZodType; export declare function jobsCreateRequestBodyToJSON(jobsCreateRequestBody: JobsCreateRequestBody): string; //# sourceMappingURL=jobscreaterequestbody.d.ts.map