dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
26 lines (25 loc) • 2.25 kB
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
export declare class CustomizableAttributes extends XMLElement {
protected static XSI_TYPE: string;
allowGeoTargetingCustomization: boolean;
allowAdUnitTargetingCustomization: boolean;
allowPlacementTargetingCustomization: boolean;
allowUserDomainTargetingCustomization: boolean;
allowBandwidthGroupTargetingCustomization: boolean;
allowBrowserTargetingCustomization: boolean;
allowBrowserLanguageTargetingCustomization: boolean;
allowOperatingSystemTargetingCustomization: boolean;
allowDeviceCapabilityTargetingCustomization: boolean;
allowDeviceCategoryTargetingCustomization: boolean;
allowMobileApplicationTargetingCustomization: boolean;
allowMobileCarrierTargetingCustomization: boolean;
allowMobileDeviceAndManufacturerTargetingCustomization: boolean;
allowAudienceSegmentTargetingCustomization: boolean;
isAllCustomTargetingKeysCustomizable: boolean;
customizableCustomTargetingKeyIds: number[];
allowDaypartTargetingCustomization: boolean;
allowFrequencyCapsCustomization: boolean;
allowDeliverySettingsCustomization: boolean;
allowCreativePlaceholdersCustomization: boolean;
constructor(allowGeoTargetingCustomization?: boolean, allowAdUnitTargetingCustomization?: boolean, allowPlacementTargetingCustomization?: boolean, allowUserDomainTargetingCustomization?: boolean, allowBandwidthGroupTargetingCustomization?: boolean, allowBrowserTargetingCustomization?: boolean, allowBrowserLanguageTargetingCustomization?: boolean, allowOperatingSystemTargetingCustomization?: boolean, allowDeviceCapabilityTargetingCustomization?: boolean, allowDeviceCategoryTargetingCustomization?: boolean, allowMobileApplicationTargetingCustomization?: boolean, allowMobileCarrierTargetingCustomization?: boolean, allowMobileDeviceAndManufacturerTargetingCustomization?: boolean, allowAudienceSegmentTargetingCustomization?: boolean, isAllCustomTargetingKeysCustomizable?: boolean, customizableCustomTargetingKeyIds?: number[], allowDaypartTargetingCustomization?: boolean, allowFrequencyCapsCustomization?: boolean, allowDeliverySettingsCustomization?: boolean, allowCreativePlaceholdersCustomization?: boolean);
}