All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.ads.dfp.jaxws.v201505.AssetCreativeTemplateVariableValue Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201505;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Stores values of {@link CreativeTemplateVariable} of {@link VariableType#ASSET}.
 *           
 * 
 * 

Java class for AssetCreativeTemplateVariableValue complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AssetCreativeTemplateVariableValue">
 *   <complexContent>
 *     <extension base="{https://www.google.com/apis/ads/publisher/v201505}BaseCreativeTemplateVariableValue">
 *       <sequence>
 *         <element name="assetId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="assetByteArray" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AssetCreativeTemplateVariableValue", propOrder = { "assetId", "assetByteArray", "fileName" }) public class AssetCreativeTemplateVariableValue extends BaseCreativeTemplateVariableValue { protected Long assetId; protected byte[] assetByteArray; protected String fileName; /** * Gets the value of the assetId property. * * @return * possible object is * {@link Long } * */ public Long getAssetId() { return assetId; } /** * Sets the value of the assetId property. * * @param value * allowed object is * {@link Long } * */ public void setAssetId(Long value) { this.assetId = value; } /** * Gets the value of the assetByteArray property. * * @return * possible object is * byte[] */ public byte[] getAssetByteArray() { return assetByteArray; } /** * Sets the value of the assetByteArray property. * * @param value * allowed object is * byte[] */ public void setAssetByteArray(byte[] value) { this.assetByteArray = value; } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy