@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
23 lines • 723 B
TypeScript
/**
* Indicates the delivery performance of the LineItem.
*/
export declare type DeliveryIndicator = {
/**
* How much the LineItem was expected to deliver as a percentage of LineItem.primaryGoal.
*/
expectedDeliveryPercentage: number;
/**
* How much the line item actually delivered as a percentage of LineItem.primaryGoal.
*/
actualDeliveryPercentage: number;
};
/**
* Holds the number of clicks or impressions, determined by LineItem.costType, delivered for a single line item for the last 7 days
*/
export declare type DeliveryData = {
/**
* Clicks or impressions delivered for the last 7 days.
*/
units: number[];
};
//# sourceMappingURL=delivery.type.d.ts.map