import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The representation of an admin user in Gusto. */ export type Admin = { /** * The unique id of the admin. */ uuid: string; /** * The email of the admin for Gusto's system. */ email?: string | undefined; /** * The first name of the admin. */ firstName?: string | undefined; /** * The last name of the admin. */ lastName?: string | undefined; /** * The phone number of the admin. */ phone?: string | null | undefined; }; /** @internal */ export declare const Admin$inboundSchema: z.ZodType; export declare function adminFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=admin.d.ts.map