UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

22 lines (21 loc) 725 B
import { AdExchangeEnvironment } from './adExchangeEnvironment'; import { BaseObject } from './baseObject'; import { CreativePlaceholder } from './creativePlaceholder'; import { DateTime } from './dateTime'; import { Money } from './money'; import { RfpType } from './rfpType'; import { Targeting } from './targeting'; export interface BuyerRfp extends BaseObject { costPerUnit?: Money; units?: number; budget?: Money; currencyCode?: string; startDateTime?: DateTime; endDateTime?: DateTime; description?: string; creativePlaceholders?: CreativePlaceholder[]; targeting?: Targeting; additionalTerms?: string; adExchangeEnvironment?: AdExchangeEnvironment; rfpType?: RfpType; }