nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
15 lines (14 loc) • 476 B
TypeScript
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 };