import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person, Person$Outbound } from "./person.js"; export type AnswerLike = { user?: Person | undefined; /** * The time the user liked the answer in ISO format (ISO 8601). */ createTime?: Date | undefined; }; /** @internal */ export declare const AnswerLike$inboundSchema: z.ZodType; /** @internal */ export type AnswerLike$Outbound = { user?: Person$Outbound | undefined; createTime?: string | undefined; }; /** @internal */ export declare const AnswerLike$outboundSchema: z.ZodType; export declare function answerLikeToJSON(answerLike: AnswerLike): string; export declare function answerLikeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=answerlike.d.ts.map