com.microsoft.bingads.v13.campaignmanagement.AgeCriterion 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AgeCriterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AgeCriterion", propOrder = {
"ageRange"
})
public class AgeCriterion
extends Criterion
{
public AgeCriterion() {
this.type = "AgeCriterion";
}
@XmlElement(name = "AgeRange", nillable = true)
@XmlSchemaType(name = "string")
protected AgeRange ageRange;
/**
* Gets the value of the ageRange property.
*
* @return
* possible object is
* {@link AgeRange }
*
*/
public AgeRange getAgeRange() {
return ageRange;
}
/**
* Sets the value of the ageRange property.
*
* @param value
* allowed object is
* {@link AgeRange }
*
*/
public void setAgeRange(AgeRange value) {
this.ageRange = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy