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

com.google.api.ads.dfp.axis.v201508.SuggestedAdUnitUpdateResult Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
/**
 * SuggestedAdUnitUpdateResult.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.dfp.axis.v201508;


/**
 * Represents the result of performing an action on {@link SuggestedAdUnit}
 * objects.
 */
public class SuggestedAdUnitUpdateResult  implements java.io.Serializable {
    /* The ids of the {@link AdUnit} objects that were created in
     * response to a
     *                 performSuggestedAdUnitAction call. */
    private java.lang.String[] newAdUnitIds;

    /* The number of objects that were changed as a result of performing
     * the
     *                 action. */
    private java.lang.Integer numChanges;

    public SuggestedAdUnitUpdateResult() {
    }

    public SuggestedAdUnitUpdateResult(
           java.lang.String[] newAdUnitIds,
           java.lang.Integer numChanges) {
           this.newAdUnitIds = newAdUnitIds;
           this.numChanges = numChanges;
    }


    /**
     * Gets the newAdUnitIds value for this SuggestedAdUnitUpdateResult.
     * 
     * @return newAdUnitIds   * The ids of the {@link AdUnit} objects that were created in
     * response to a
     *                 performSuggestedAdUnitAction call.
     */
    public java.lang.String[] getNewAdUnitIds() {
        return newAdUnitIds;
    }


    /**
     * Sets the newAdUnitIds value for this SuggestedAdUnitUpdateResult.
     * 
     * @param newAdUnitIds   * The ids of the {@link AdUnit} objects that were created in
     * response to a
     *                 performSuggestedAdUnitAction call.
     */
    public void setNewAdUnitIds(java.lang.String[] newAdUnitIds) {
        this.newAdUnitIds = newAdUnitIds;
    }

    public java.lang.String getNewAdUnitIds(int i) {
        return this.newAdUnitIds[i];
    }

    public void setNewAdUnitIds(int i, java.lang.String _value) {
        this.newAdUnitIds[i] = _value;
    }


    /**
     * Gets the numChanges value for this SuggestedAdUnitUpdateResult.
     * 
     * @return numChanges   * The number of objects that were changed as a result of performing
     * the
     *                 action.
     */
    public java.lang.Integer getNumChanges() {
        return numChanges;
    }


    /**
     * Sets the numChanges value for this SuggestedAdUnitUpdateResult.
     * 
     * @param numChanges   * The number of objects that were changed as a result of performing
     * the
     *                 action.
     */
    public void setNumChanges(java.lang.Integer numChanges) {
        this.numChanges = numChanges;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof SuggestedAdUnitUpdateResult)) return false;
        SuggestedAdUnitUpdateResult other = (SuggestedAdUnitUpdateResult) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.newAdUnitIds==null && other.getNewAdUnitIds()==null) || 
             (this.newAdUnitIds!=null &&
              java.util.Arrays.equals(this.newAdUnitIds, other.getNewAdUnitIds()))) &&
            ((this.numChanges==null && other.getNumChanges()==null) || 
             (this.numChanges!=null &&
              this.numChanges.equals(other.getNumChanges())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getNewAdUnitIds() != null) {
            for (int i=0;
                 i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy