import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DigestSection } from "./digestsection.js"; export type Digest = { /** * Identifier for the podcast file generated from this digest content. */ podcastFileId?: string | undefined; /** * Duration of the podcast file in seconds. */ podcastDuration?: number | undefined; /** * The date this digest covers, in YYYY-MM-DD format. Represents the specific day for which the digest content and updates were compiled. This can be empty if the digest is not yet available. */ digestDate?: string | undefined; /** * Array of digest sections from which the podcast was created. */ sections?: Array | undefined; }; /** @internal */ export declare const Digest$inboundSchema: z.ZodType; export declare function digestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=digest.d.ts.map