import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The representation of an earning type in Gusto. */ export type EarningType = { /** * The name of the earning type. */ name?: string | undefined; /** * The ID of the earning type. */ uuid: string; /** * Whether the earning type is active. */ active?: boolean | undefined; }; /** @internal */ export declare const EarningType$inboundSchema: z.ZodType; export declare function earningTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=earningtype.d.ts.map