package com.microsoft.bingads.v11.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for GenderCriterion complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GenderCriterion"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}Criterion"> * <sequence> * <element name="GenderType" type="{https://bingads.microsoft.com/CampaignManagement/v11}GenderType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenderCriterion", propOrder = { "genderType" }) public class GenderCriterion extends Criterion { @XmlElement(name = "GenderType", nillable = true) @XmlSchemaType(name = "string") protected GenderType genderType; /** * Gets the value of the genderType property. * * @return * possible object is * {@link GenderType } * */ public GenderType getGenderType() { return genderType; } /** * Sets the value of the genderType property. * * @param value * allowed object is * {@link GenderType } * */ public void setGenderType(GenderType value) { this.genderType = value; } }