import { AdGroupAd } from './enum/AdGroupAd'; import { ITextLabel } from './Label'; import { IExpandedTextAd, IResponsiveDisplayAd } from './Ad'; interface IAdGroupAd { adGroupId: string; status?: AdGroupAd.Status; ad: Partial; readonly policySummary?: any; labels?: ITextLabel[]; readonly baseCampaignId?: string; readonly baseAdGroupId?: string; readonly adStrengthInfo?: any; } export { IAdGroupAd };