
com.google.api.ads.dfp.jaxws.v201508.BaseCustomFieldValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
package com.google.api.ads.dfp.jaxws.v201508;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
*
* The value of a {@link CustomField} for a particular entity.
*
*
* Java class for BaseCustomFieldValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BaseCustomFieldValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customFieldId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BaseCustomFieldValue", propOrder = {
"customFieldId"
})
@XmlSeeAlso({
CustomFieldValue.class,
DropDownCustomFieldValue.class
})
public abstract class BaseCustomFieldValue {
protected Long customFieldId;
/**
* Gets the value of the customFieldId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCustomFieldId() {
return customFieldId;
}
/**
* Sets the value of the customFieldId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCustomFieldId(Long value) {
this.customFieldId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy