fathom-typescript
Version:
Fathom's official TypeScript SDK.
19 lines • 667 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type Invitee = {
name: string | null;
/**
* **Coming soon!**
*
* @remarks
*/
matchedSpeakerDisplayName?: string | null | undefined;
email: string | null;
emailDomain: string | null;
isExternal: boolean;
};
/** @internal */
export declare const Invitee$inboundSchema: z.ZodType<Invitee, z.ZodTypeDef, unknown>;
export declare function inviteeFromJSON(jsonString: string): SafeParseResult<Invitee, SDKValidationError>;
//# sourceMappingURL=invitee.d.ts.map