import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An account represents a customer at Wistia. Each account can own media, folders * * @remarks * channels, etc. */ export type GetAccountDetailsResponse = { /** * Numeric id of the account */ id: number; /** * Account name */ name: string; /** * Account’s main Wistia URL (e.g. http://brendan.wistia.com) */ url: string; /** * The total number of medias in this account */ mediaCount: number; /** * The account's video limit */ videoLimit: number | null; /** * The total number of folders in this account */ folderCount: number; /** * The total number of channels in this account */ channelCount: number; }; /** @internal */ export declare const GetAccountDetailsResponse$inboundSchema: z.ZodType; export declare function getAccountDetailsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getaccountdetails.d.ts.map