UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

20 lines (19 loc) 821 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class CreativeTemplate extends xmlElement_1.XMLElement { constructor(id = null, name = null, description = null, variables = null, snippet = null, status = null, type = null, isInterstitial = null, isNativeEligible = null, isSafeFrameCompatible = null) { super(); this.id = id; this.name = name; this.description = description; this.variables = variables; this.snippet = snippet; this.status = status; this.type = type; this.isInterstitial = isInterstitial; this.isNativeEligible = isNativeEligible; this.isSafeFrameCompatible = isSafeFrameCompatible; } } CreativeTemplate.XSI_TYPE = "CreativeTemplate"; exports.CreativeTemplate = CreativeTemplate;