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