com.microsoft.bingads.v13.campaignmanagement.GenreCriterion Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for GenreCriterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenreCriterion", propOrder = {
"genreId"
})
public class GenreCriterion
extends Criterion
{
public GenreCriterion() {
this.type = "GenreCriterion";
}
@XmlElement(name = "GenreId")
protected Long genreId;
/**
* Gets the value of the genreId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getGenreId() {
return genreId;
}
/**
* Sets the value of the genreId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setGenreId(Long value) {
this.genreId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy