com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariable Maven / Gradle / Ivy
Show all versions of dfp-axis Show documentation
// Copyright 2023 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.
/**
* AssetCreativeTemplateVariable.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.v202305;
/**
* Represents a file asset variable defined in a creative template.
*
* Use {@link AssetCreativeTemplateVariableValue} to specify
* the value
* for this variable when creating {@link TemplateCreative}
* from the {@link TemplateCreative}.
*/
public class AssetCreativeTemplateVariable extends com.google.api.ads.admanager.axis.v202305.CreativeTemplateVariable implements java.io.Serializable {
/* A set of supported mime types. This set can be empty or null
* if there's no
* constraint, meaning files of any mime types are
* allowed. */
private com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType[] mimeTypes;
public AssetCreativeTemplateVariable() {
}
public AssetCreativeTemplateVariable(
java.lang.String label,
java.lang.String uniqueName,
java.lang.String description,
java.lang.Boolean isRequired,
com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType[] mimeTypes) {
super(
label,
uniqueName,
description,
isRequired);
this.mimeTypes = mimeTypes;
}
@Override
public String toString() {
return com.google.common.base.MoreObjects.toStringHelper(this.getClass())
.omitNullValues()
.add("description", getDescription())
.add("isRequired", getIsRequired())
.add("label", getLabel())
.add("mimeTypes", getMimeTypes())
.add("uniqueName", getUniqueName())
.toString();
}
/**
* Gets the mimeTypes value for this AssetCreativeTemplateVariable.
*
* @return mimeTypes * A set of supported mime types. This set can be empty or null
* if there's no
* constraint, meaning files of any mime types are
* allowed.
*/
public com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType[] getMimeTypes() {
return mimeTypes;
}
/**
* Sets the mimeTypes value for this AssetCreativeTemplateVariable.
*
* @param mimeTypes * A set of supported mime types. This set can be empty or null
* if there's no
* constraint, meaning files of any mime types are
* allowed.
*/
public void setMimeTypes(com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType[] mimeTypes) {
this.mimeTypes = mimeTypes;
}
public com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType getMimeTypes(int i) {
return this.mimeTypes[i];
}
public void setMimeTypes(int i, com.google.api.ads.admanager.axis.v202305.AssetCreativeTemplateVariableMimeType _value) {
this.mimeTypes[i] = _value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AssetCreativeTemplateVariable)) return false;
AssetCreativeTemplateVariable other = (AssetCreativeTemplateVariable) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
((this.mimeTypes==null && other.getMimeTypes()==null) ||
(this.mimeTypes!=null &&
java.util.Arrays.equals(this.mimeTypes, other.getMimeTypes())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
if (getMimeTypes() != null) {
for (int i=0;
i