Interface VideoProviderUsage

Aggregated usage / billing counters for a video generation session.

interface VideoProviderUsage {
    totalVideos: number;
    totalCostUSD?: number;
    processingTimeMs?: number;
}

Properties

totalVideos: number

Number of videos generated in this session.

totalCostUSD?: number

Total cost in USD, if the provider reports it.

processingTimeMs?: number

Total processing time in milliseconds.