package com.microsoft.bingads.v10.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 GenderTargetBid complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GenderTargetBid"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="BidAdjustment" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="Gender" type="{https://bingads.microsoft.com/CampaignManagement/v10}GenderType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenderTargetBid", propOrder = { "bidAdjustment", "gender" }) public class GenderTargetBid { @XmlElement(name = "BidAdjustment") protected int bidAdjustment; @XmlElement(name = "Gender", required = true) @XmlSchemaType(name = "string") protected GenderType gender; /** * Gets the value of the bidAdjustment property. * */ public int getBidAdjustment() { return bidAdjustment; } /** * Sets the value of the bidAdjustment property. * */ public void setBidAdjustment(int value) { this.bidAdjustment = value; } /** * Gets the value of the gender property. * * @return * possible object is * {@link GenderType } * */ public GenderType getGender() { return gender; } /** * Sets the value of the gender property. * * @param value * allowed object is * {@link GenderType } * */ public void setGender(GenderType value) { this.gender = value; } }