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/v202508` */ export interface CustomPacingCurve { /** CustomPacingGoalUnit|xsd:string|ABSOLUTE,MILLI_PERCENT,UNKNOWN */ customPacingGoalUnit?: CustomPacingGoalUnit | keyof typeof CustomPacingGoalUnit; /** customPacingGoals[] */ customPacingGoals?: Array; }