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

com.google.api.ads.dfp.axis.v201505.Content Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
/**
 * Content.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.v201505;


/**
 * A {@code Content} represents video metadata from a publisher's
 *             Content Management System (CMS) that has been synced to
 * DFP.
 *             

* Video line items can be targeted to {@code Content} * to indicate what ads should match when the {@code Content} * is being played. */ public class Content implements java.io.Serializable { /* Uniquely identifies the {@code Content}. This attribute is * read-only and * is assigned by Google when the content is created. */ private java.lang.Long id; /* The name of the {@code Content}. This attribute is read-only. */ private java.lang.String name; /* The status of this {@code Content}. This attribute is read-only. */ private com.google.api.ads.dfp.axis.v201505.ContentStatus status; /* Whether the content status was defined by the user, or by the * source CMS * from which the content was ingested. This attribute * is read-only. */ private com.google.api.ads.dfp.axis.v201505.ContentStatusDefinedBy statusDefinedBy; /* The date and time at which this content was published. This * attribute is read-only. */ private com.google.api.ads.dfp.axis.v201505.DateTime importDateTime; /* The date and time at which this content was last modified. * This attribute is read-only. */ private com.google.api.ads.dfp.axis.v201505.DateTime lastModifiedDateTime; /* A collection of custom targeting value IDs manually assigned * to this content * by the user. This attribute is optional. */ private long[] userDefinedCustomTargetingValueIds; /* A collection of custom targeting value IDs automatically targeted * to this * content via metadata mapping rules. This attribute * is read-only. */ private long[] mappingRuleDefinedCustomTargetingValueIds; /* Information about the content from the CMS it was ingested * from. * This attribute is read-only. */ private com.google.api.ads.dfp.axis.v201505.CmsContent[] cmsSources; public Content() { } public Content( java.lang.Long id, java.lang.String name, com.google.api.ads.dfp.axis.v201505.ContentStatus status, com.google.api.ads.dfp.axis.v201505.ContentStatusDefinedBy statusDefinedBy, com.google.api.ads.dfp.axis.v201505.DateTime importDateTime, com.google.api.ads.dfp.axis.v201505.DateTime lastModifiedDateTime, long[] userDefinedCustomTargetingValueIds, long[] mappingRuleDefinedCustomTargetingValueIds, com.google.api.ads.dfp.axis.v201505.CmsContent[] cmsSources) { this.id = id; this.name = name; this.status = status; this.statusDefinedBy = statusDefinedBy; this.importDateTime = importDateTime; this.lastModifiedDateTime = lastModifiedDateTime; this.userDefinedCustomTargetingValueIds = userDefinedCustomTargetingValueIds; this.mappingRuleDefinedCustomTargetingValueIds = mappingRuleDefinedCustomTargetingValueIds; this.cmsSources = cmsSources; } /** * Gets the id value for this Content. * * @return id * Uniquely identifies the {@code Content}. This attribute is * read-only and * is assigned by Google when the content is created. */ public java.lang.Long getId() { return id; } /** * Sets the id value for this Content. * * @param id * Uniquely identifies the {@code Content}. This attribute is * read-only and * is assigned by Google when the content is created. */ public void setId(java.lang.Long id) { this.id = id; } /** * Gets the name value for this Content. * * @return name * The name of the {@code Content}. This attribute is read-only. */ public java.lang.String getName() { return name; } /** * Sets the name value for this Content. * * @param name * The name of the {@code Content}. This attribute is read-only. */ public void setName(java.lang.String name) { this.name = name; } /** * Gets the status value for this Content. * * @return status * The status of this {@code Content}. This attribute is read-only. */ public com.google.api.ads.dfp.axis.v201505.ContentStatus getStatus() { return status; } /** * Sets the status value for this Content. * * @param status * The status of this {@code Content}. This attribute is read-only. */ public void setStatus(com.google.api.ads.dfp.axis.v201505.ContentStatus status) { this.status = status; } /** * Gets the statusDefinedBy value for this Content. * * @return statusDefinedBy * Whether the content status was defined by the user, or by the * source CMS * from which the content was ingested. This attribute * is read-only. */ public com.google.api.ads.dfp.axis.v201505.ContentStatusDefinedBy getStatusDefinedBy() { return statusDefinedBy; } /** * Sets the statusDefinedBy value for this Content. * * @param statusDefinedBy * Whether the content status was defined by the user, or by the * source CMS * from which the content was ingested. This attribute * is read-only. */ public void setStatusDefinedBy(com.google.api.ads.dfp.axis.v201505.ContentStatusDefinedBy statusDefinedBy) { this.statusDefinedBy = statusDefinedBy; } /** * Gets the importDateTime value for this Content. * * @return importDateTime * The date and time at which this content was published. This * attribute is read-only. */ public com.google.api.ads.dfp.axis.v201505.DateTime getImportDateTime() { return importDateTime; } /** * Sets the importDateTime value for this Content. * * @param importDateTime * The date and time at which this content was published. This * attribute is read-only. */ public void setImportDateTime(com.google.api.ads.dfp.axis.v201505.DateTime importDateTime) { this.importDateTime = importDateTime; } /** * Gets the lastModifiedDateTime value for this Content. * * @return lastModifiedDateTime * The date and time at which this content was last modified. * This attribute is read-only. */ public com.google.api.ads.dfp.axis.v201505.DateTime getLastModifiedDateTime() { return lastModifiedDateTime; } /** * Sets the lastModifiedDateTime value for this Content. * * @param lastModifiedDateTime * The date and time at which this content was last modified. * This attribute is read-only. */ public void setLastModifiedDateTime(com.google.api.ads.dfp.axis.v201505.DateTime lastModifiedDateTime) { this.lastModifiedDateTime = lastModifiedDateTime; } /** * Gets the userDefinedCustomTargetingValueIds value for this Content. * * @return userDefinedCustomTargetingValueIds * A collection of custom targeting value IDs manually assigned * to this content * by the user. This attribute is optional. */ public long[] getUserDefinedCustomTargetingValueIds() { return userDefinedCustomTargetingValueIds; } /** * Sets the userDefinedCustomTargetingValueIds value for this Content. * * @param userDefinedCustomTargetingValueIds * A collection of custom targeting value IDs manually assigned * to this content * by the user. This attribute is optional. */ public void setUserDefinedCustomTargetingValueIds(long[] userDefinedCustomTargetingValueIds) { this.userDefinedCustomTargetingValueIds = userDefinedCustomTargetingValueIds; } public long getUserDefinedCustomTargetingValueIds(int i) { return this.userDefinedCustomTargetingValueIds[i]; } public void setUserDefinedCustomTargetingValueIds(int i, long _value) { this.userDefinedCustomTargetingValueIds[i] = _value; } /** * Gets the mappingRuleDefinedCustomTargetingValueIds value for this Content. * * @return mappingRuleDefinedCustomTargetingValueIds * A collection of custom targeting value IDs automatically targeted * to this * content via metadata mapping rules. This attribute * is read-only. */ public long[] getMappingRuleDefinedCustomTargetingValueIds() { return mappingRuleDefinedCustomTargetingValueIds; } /** * Sets the mappingRuleDefinedCustomTargetingValueIds value for this Content. * * @param mappingRuleDefinedCustomTargetingValueIds * A collection of custom targeting value IDs automatically targeted * to this * content via metadata mapping rules. This attribute * is read-only. */ public void setMappingRuleDefinedCustomTargetingValueIds(long[] mappingRuleDefinedCustomTargetingValueIds) { this.mappingRuleDefinedCustomTargetingValueIds = mappingRuleDefinedCustomTargetingValueIds; } public long getMappingRuleDefinedCustomTargetingValueIds(int i) { return this.mappingRuleDefinedCustomTargetingValueIds[i]; } public void setMappingRuleDefinedCustomTargetingValueIds(int i, long _value) { this.mappingRuleDefinedCustomTargetingValueIds[i] = _value; } /** * Gets the cmsSources value for this Content. * * @return cmsSources * Information about the content from the CMS it was ingested * from. * This attribute is read-only. */ public com.google.api.ads.dfp.axis.v201505.CmsContent[] getCmsSources() { return cmsSources; } /** * Sets the cmsSources value for this Content. * * @param cmsSources * Information about the content from the CMS it was ingested * from. * This attribute is read-only. */ public void setCmsSources(com.google.api.ads.dfp.axis.v201505.CmsContent[] cmsSources) { this.cmsSources = cmsSources; } public com.google.api.ads.dfp.axis.v201505.CmsContent getCmsSources(int i) { return this.cmsSources[i]; } public void setCmsSources(int i, com.google.api.ads.dfp.axis.v201505.CmsContent _value) { this.cmsSources[i] = _value; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof Content)) return false; Content other = (Content) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((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.status==null && other.getStatus()==null) || (this.status!=null && this.status.equals(other.getStatus()))) && ((this.statusDefinedBy==null && other.getStatusDefinedBy()==null) || (this.statusDefinedBy!=null && this.statusDefinedBy.equals(other.getStatusDefinedBy()))) && ((this.importDateTime==null && other.getImportDateTime()==null) || (this.importDateTime!=null && this.importDateTime.equals(other.getImportDateTime()))) && ((this.lastModifiedDateTime==null && other.getLastModifiedDateTime()==null) || (this.lastModifiedDateTime!=null && this.lastModifiedDateTime.equals(other.getLastModifiedDateTime()))) && ((this.userDefinedCustomTargetingValueIds==null && other.getUserDefinedCustomTargetingValueIds()==null) || (this.userDefinedCustomTargetingValueIds!=null && java.util.Arrays.equals(this.userDefinedCustomTargetingValueIds, other.getUserDefinedCustomTargetingValueIds()))) && ((this.mappingRuleDefinedCustomTargetingValueIds==null && other.getMappingRuleDefinedCustomTargetingValueIds()==null) || (this.mappingRuleDefinedCustomTargetingValueIds!=null && java.util.Arrays.equals(this.mappingRuleDefinedCustomTargetingValueIds, other.getMappingRuleDefinedCustomTargetingValueIds()))) && ((this.cmsSources==null && other.getCmsSources()==null) || (this.cmsSources!=null && java.util.Arrays.equals(this.cmsSources, other.getCmsSources()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getId() != null) { _hashCode += getId().hashCode(); } if (getName() != null) { _hashCode += getName().hashCode(); } if (getStatus() != null) { _hashCode += getStatus().hashCode(); } if (getStatusDefinedBy() != null) { _hashCode += getStatusDefinedBy().hashCode(); } if (getImportDateTime() != null) { _hashCode += getImportDateTime().hashCode(); } if (getLastModifiedDateTime() != null) { _hashCode += getLastModifiedDateTime().hashCode(); } if (getUserDefinedCustomTargetingValueIds() != null) { for (int i=0; i





© 2015 - 2025 Weber Informatics LLC | Privacy Policy