com.google.api.ads.admanager.axis.v202402.Creative Maven / Gradle / Ivy
Show all versions of dfp-axis Show documentation
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* Creative.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter.
*/
package com.google.api.ads.admanager.axis.v202402;
/**
* A {@code Creative} represents the media for the ad being served.
*
* Read more about creatives on the Ad
* Manager Help Center.
*/
public abstract class Creative implements java.io.Serializable {
/* The ID of the advertiser that owns the creative. This attribute
* is required. */
private java.lang.Long advertiserId;
/* Uniquely identifies the {@code Creative}. This value is read-only
* and is assigned by Google
* when the creative is created. This attribute is required
* for updates. */
private java.lang.Long id;
/* The name of the creative. This attribute is required and has
* a maximum length of 255
* characters. */
private java.lang.String name;
/* The {@link Size} of the creative. This attribute is required
* for creation and then is
* read-only. */
private com.google.api.ads.admanager.axis.v202402.Size size;
/* The URL of the creative for previewing the media. This attribute
* is read-only and is assigned
* by Google when a creative is created. */
private java.lang.String previewUrl;
/* Set of policy labels detected for this creative.
* This attribute is read-only. */
private com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation[] policyLabels;
/* The set of labels applied to this creative. */
private com.google.api.ads.admanager.axis.v202402.AppliedLabel[] appliedLabels;
/* The date and time this creative was last modified. */
private com.google.api.ads.admanager.axis.v202402.DateTime lastModifiedDateTime;
/* The values of the custom fields associated with this creative. */
private com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue[] customFieldValues;
/* The third party companies associated with this creative.
*
*
This is distinct from any associated companies
* that Google may detect programmatically. */
private com.google.api.ads.admanager.axis.v202402.ThirdPartyDataDeclaration thirdPartyDataDeclaration;
public Creative() {
}
public Creative(
java.lang.Long advertiserId,
java.lang.Long id,
java.lang.String name,
com.google.api.ads.admanager.axis.v202402.Size size,
java.lang.String previewUrl,
com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation[] policyLabels,
com.google.api.ads.admanager.axis.v202402.AppliedLabel[] appliedLabels,
com.google.api.ads.admanager.axis.v202402.DateTime lastModifiedDateTime,
com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue[] customFieldValues,
com.google.api.ads.admanager.axis.v202402.ThirdPartyDataDeclaration thirdPartyDataDeclaration) {
this.advertiserId = advertiserId;
this.id = id;
this.name = name;
this.size = size;
this.previewUrl = previewUrl;
this.policyLabels = policyLabels;
this.appliedLabels = appliedLabels;
this.lastModifiedDateTime = lastModifiedDateTime;
this.customFieldValues = customFieldValues;
this.thirdPartyDataDeclaration = thirdPartyDataDeclaration;
}
@Override
public String toString() {
return com.google.common.base.MoreObjects.toStringHelper(this.getClass())
.omitNullValues()
.add("advertiserId", getAdvertiserId())
.add("appliedLabels", getAppliedLabels())
.add("customFieldValues", getCustomFieldValues())
.add("id", getId())
.add("lastModifiedDateTime", getLastModifiedDateTime())
.add("name", getName())
.add("policyLabels", getPolicyLabels())
.add("previewUrl", getPreviewUrl())
.add("size", getSize())
.add("thirdPartyDataDeclaration", getThirdPartyDataDeclaration())
.toString();
}
/**
* Gets the advertiserId value for this Creative.
*
* @return advertiserId * The ID of the advertiser that owns the creative. This attribute
* is required.
*/
public java.lang.Long getAdvertiserId() {
return advertiserId;
}
/**
* Sets the advertiserId value for this Creative.
*
* @param advertiserId * The ID of the advertiser that owns the creative. This attribute
* is required.
*/
public void setAdvertiserId(java.lang.Long advertiserId) {
this.advertiserId = advertiserId;
}
/**
* Gets the id value for this Creative.
*
* @return id * Uniquely identifies the {@code Creative}. This value is read-only
* and is assigned by Google
* when the creative is created. This attribute is required
* for updates.
*/
public java.lang.Long getId() {
return id;
}
/**
* Sets the id value for this Creative.
*
* @param id * Uniquely identifies the {@code Creative}. This value is read-only
* and is assigned by Google
* when the creative is created. This attribute is required
* for updates.
*/
public void setId(java.lang.Long id) {
this.id = id;
}
/**
* Gets the name value for this Creative.
*
* @return name * The name of the creative. This attribute is required and has
* a maximum length of 255
* characters.
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this Creative.
*
* @param name * The name of the creative. This attribute is required and has
* a maximum length of 255
* characters.
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the size value for this Creative.
*
* @return size * The {@link Size} of the creative. This attribute is required
* for creation and then is
* read-only.
*/
public com.google.api.ads.admanager.axis.v202402.Size getSize() {
return size;
}
/**
* Sets the size value for this Creative.
*
* @param size * The {@link Size} of the creative. This attribute is required
* for creation and then is
* read-only.
*/
public void setSize(com.google.api.ads.admanager.axis.v202402.Size size) {
this.size = size;
}
/**
* Gets the previewUrl value for this Creative.
*
* @return previewUrl * The URL of the creative for previewing the media. This attribute
* is read-only and is assigned
* by Google when a creative is created.
*/
public java.lang.String getPreviewUrl() {
return previewUrl;
}
/**
* Sets the previewUrl value for this Creative.
*
* @param previewUrl * The URL of the creative for previewing the media. This attribute
* is read-only and is assigned
* by Google when a creative is created.
*/
public void setPreviewUrl(java.lang.String previewUrl) {
this.previewUrl = previewUrl;
}
/**
* Gets the policyLabels value for this Creative.
*
* @return policyLabels * Set of policy labels detected for this creative.
* This attribute is read-only.
*/
public com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation[] getPolicyLabels() {
return policyLabels;
}
/**
* Sets the policyLabels value for this Creative.
*
* @param policyLabels * Set of policy labels detected for this creative.
* This attribute is read-only.
*/
public void setPolicyLabels(com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation[] policyLabels) {
this.policyLabels = policyLabels;
}
public com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation getPolicyLabels(int i) {
return this.policyLabels[i];
}
public void setPolicyLabels(int i, com.google.api.ads.admanager.axis.v202402.CreativePolicyViolation _value) {
this.policyLabels[i] = _value;
}
/**
* Gets the appliedLabels value for this Creative.
*
* @return appliedLabels * The set of labels applied to this creative.
*/
public com.google.api.ads.admanager.axis.v202402.AppliedLabel[] getAppliedLabels() {
return appliedLabels;
}
/**
* Sets the appliedLabels value for this Creative.
*
* @param appliedLabels * The set of labels applied to this creative.
*/
public void setAppliedLabels(com.google.api.ads.admanager.axis.v202402.AppliedLabel[] appliedLabels) {
this.appliedLabels = appliedLabels;
}
public com.google.api.ads.admanager.axis.v202402.AppliedLabel getAppliedLabels(int i) {
return this.appliedLabels[i];
}
public void setAppliedLabels(int i, com.google.api.ads.admanager.axis.v202402.AppliedLabel _value) {
this.appliedLabels[i] = _value;
}
/**
* Gets the lastModifiedDateTime value for this Creative.
*
* @return lastModifiedDateTime * The date and time this creative was last modified.
*/
public com.google.api.ads.admanager.axis.v202402.DateTime getLastModifiedDateTime() {
return lastModifiedDateTime;
}
/**
* Sets the lastModifiedDateTime value for this Creative.
*
* @param lastModifiedDateTime * The date and time this creative was last modified.
*/
public void setLastModifiedDateTime(com.google.api.ads.admanager.axis.v202402.DateTime lastModifiedDateTime) {
this.lastModifiedDateTime = lastModifiedDateTime;
}
/**
* Gets the customFieldValues value for this Creative.
*
* @return customFieldValues * The values of the custom fields associated with this creative.
*/
public com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue[] getCustomFieldValues() {
return customFieldValues;
}
/**
* Sets the customFieldValues value for this Creative.
*
* @param customFieldValues * The values of the custom fields associated with this creative.
*/
public void setCustomFieldValues(com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue[] customFieldValues) {
this.customFieldValues = customFieldValues;
}
public com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue getCustomFieldValues(int i) {
return this.customFieldValues[i];
}
public void setCustomFieldValues(int i, com.google.api.ads.admanager.axis.v202402.BaseCustomFieldValue _value) {
this.customFieldValues[i] = _value;
}
/**
* Gets the thirdPartyDataDeclaration value for this Creative.
*
* @return thirdPartyDataDeclaration * The third party companies associated with this creative.
*
*
This is distinct from any associated companies
* that Google may detect programmatically.
*/
public com.google.api.ads.admanager.axis.v202402.ThirdPartyDataDeclaration getThirdPartyDataDeclaration() {
return thirdPartyDataDeclaration;
}
/**
* Sets the thirdPartyDataDeclaration value for this Creative.
*
* @param thirdPartyDataDeclaration * The third party companies associated with this creative.
*
*
This is distinct from any associated companies
* that Google may detect programmatically.
*/
public void setThirdPartyDataDeclaration(com.google.api.ads.admanager.axis.v202402.ThirdPartyDataDeclaration thirdPartyDataDeclaration) {
this.thirdPartyDataDeclaration = thirdPartyDataDeclaration;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof Creative)) return false;
Creative other = (Creative) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.advertiserId==null && other.getAdvertiserId()==null) ||
(this.advertiserId!=null &&
this.advertiserId.equals(other.getAdvertiserId()))) &&
((this.id==null && other.getId()==null) ||
(this.id!=null &&
this.id.equals(other.getId()))) &&
((this.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.size==null && other.getSize()==null) ||
(this.size!=null &&
this.size.equals(other.getSize()))) &&
((this.previewUrl==null && other.getPreviewUrl()==null) ||
(this.previewUrl!=null &&
this.previewUrl.equals(other.getPreviewUrl()))) &&
((this.policyLabels==null && other.getPolicyLabels()==null) ||
(this.policyLabels!=null &&
java.util.Arrays.equals(this.policyLabels, other.getPolicyLabels()))) &&
((this.appliedLabels==null && other.getAppliedLabels()==null) ||
(this.appliedLabels!=null &&
java.util.Arrays.equals(this.appliedLabels, other.getAppliedLabels()))) &&
((this.lastModifiedDateTime==null && other.getLastModifiedDateTime()==null) ||
(this.lastModifiedDateTime!=null &&
this.lastModifiedDateTime.equals(other.getLastModifiedDateTime()))) &&
((this.customFieldValues==null && other.getCustomFieldValues()==null) ||
(this.customFieldValues!=null &&
java.util.Arrays.equals(this.customFieldValues, other.getCustomFieldValues()))) &&
((this.thirdPartyDataDeclaration==null && other.getThirdPartyDataDeclaration()==null) ||
(this.thirdPartyDataDeclaration!=null &&
this.thirdPartyDataDeclaration.equals(other.getThirdPartyDataDeclaration())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getAdvertiserId() != null) {
_hashCode += getAdvertiserId().hashCode();
}
if (getId() != null) {
_hashCode += getId().hashCode();
}
if (getName() != null) {
_hashCode += getName().hashCode();
}
if (getSize() != null) {
_hashCode += getSize().hashCode();
}
if (getPreviewUrl() != null) {
_hashCode += getPreviewUrl().hashCode();
}
if (getPolicyLabels() != null) {
for (int i=0;
i