UNPKG

nodejs-google-adwords

Version:
15 lines (14 loc) 476 B
import { AdGroupAd } from './enum/AdGroupAd'; import { ITextLabel } from './Label'; import { IExpandedTextAd, IResponsiveDisplayAd } from './Ad'; interface IAdGroupAd { adGroupId: string; status?: AdGroupAd.Status; ad: Partial<IExpandedTextAd | IResponsiveDisplayAd>; readonly policySummary?: any; labels?: ITextLabel[]; readonly baseCampaignId?: string; readonly baseAdGroupId?: string; readonly adStrengthInfo?: any; } export { IAdGroupAd };