@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
18 lines (17 loc) • 594 B
TypeScript
import { CustomPacingGoals } from './CustomPacingGoals';
export declare enum CustomPacingGoalUnit {
ABSOLUTE = "ABSOLUTE",
MILLI_PERCENT = "MILLI_PERCENT",
UNKNOWN = "UNKNOWN"
}
/**
* customPacingCurve
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202411`
*/
export interface CustomPacingCurve {
/** CustomPacingGoalUnit|xsd:string|ABSOLUTE,MILLI_PERCENT,UNKNOWN */
customPacingGoalUnit?: CustomPacingGoalUnit | keyof typeof CustomPacingGoalUnit;
/** customPacingGoals[] */
customPacingGoals?: Array<CustomPacingGoals>;
}