UNPKG

@guardian/google-admanager-api

Version:

Google Ad Manager API Client Library for NodeJs

31 lines 790 B
import { type Describe } from "superstruct"; /** * Stats contains trafficking statistics for LineItem and LineItemCreativeAssociation objects */ export type Stats = { /** * The number of impressions delivered. */ impressionsDelivered: number; /** * The number of clicks delivered. */ clicksDelivered: number; /** * The number of video completions delivered. */ videoCompletionsDelivered: number; /** * The number of video starts delivered. */ videoStartsDelivered: number; /** * The number of viewable impressions delivered. */ viewableImpressionsDelivered: number; }; /** * Represents a Stats struct. */ export declare const StatsStruct: Describe<Stats>; //# sourceMappingURL=stats.type.d.ts.map