import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Successful operation. Account stats retrieved. */ export type GetStatsAccountResponse = { /** * The total number of times all of the videos from this account have been loaded. */ loadCount: number; /** * The total number of times all of the videos from this account have been played. */ playCount: number; /** * The total amount of time spent watching all of the videos in this account. */ hoursWatched: number; }; /** @internal */ export declare const GetStatsAccountResponse$inboundSchema: z.ZodType; export declare function getStatsAccountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstatsaccount.d.ts.map