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

com.microsoft.bingads.v13.adinsight.KeywordDemographic Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.adinsight;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for KeywordDemographic complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="KeywordDemographic">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="EighteenToTwentyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="TwentyFiveToThirtyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ThirtyFiveToFourtyNine" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="FiftyToSixtyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="SixtyFiveAndAbove" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="AgeUnknown" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="Female" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="Male" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="GenderUnknown" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeywordDemographic", propOrder = { "device", "eighteenToTwentyFour", "twentyFiveToThirtyFour", "thirtyFiveToFourtyNine", "fiftyToSixtyFour", "sixtyFiveAndAbove", "ageUnknown", "female", "male", "genderUnknown" }) public class KeywordDemographic { @XmlElement(name = "Device", nillable = true) protected String device; @XmlElement(name = "EighteenToTwentyFour") protected Double eighteenToTwentyFour; @XmlElement(name = "TwentyFiveToThirtyFour") protected Double twentyFiveToThirtyFour; @XmlElement(name = "ThirtyFiveToFourtyNine") protected Double thirtyFiveToFourtyNine; @XmlElement(name = "FiftyToSixtyFour") protected Double fiftyToSixtyFour; @XmlElement(name = "SixtyFiveAndAbove") protected Double sixtyFiveAndAbove; @XmlElement(name = "AgeUnknown") protected Double ageUnknown; @XmlElement(name = "Female") protected Double female; @XmlElement(name = "Male") protected Double male; @XmlElement(name = "GenderUnknown") protected Double genderUnknown; /** * Gets the value of the device property. * * @return * possible object is * {@link String } * */ public String getDevice() { return device; } /** * Sets the value of the device property. * * @param value * allowed object is * {@link String } * */ public void setDevice(String value) { this.device = value; } /** * Gets the value of the eighteenToTwentyFour property. * * @return * possible object is * {@link Double } * */ public Double getEighteenToTwentyFour() { return eighteenToTwentyFour; } /** * Sets the value of the eighteenToTwentyFour property. * * @param value * allowed object is * {@link Double } * */ public void setEighteenToTwentyFour(Double value) { this.eighteenToTwentyFour = value; } /** * Gets the value of the twentyFiveToThirtyFour property. * * @return * possible object is * {@link Double } * */ public Double getTwentyFiveToThirtyFour() { return twentyFiveToThirtyFour; } /** * Sets the value of the twentyFiveToThirtyFour property. * * @param value * allowed object is * {@link Double } * */ public void setTwentyFiveToThirtyFour(Double value) { this.twentyFiveToThirtyFour = value; } /** * Gets the value of the thirtyFiveToFourtyNine property. * * @return * possible object is * {@link Double } * */ public Double getThirtyFiveToFourtyNine() { return thirtyFiveToFourtyNine; } /** * Sets the value of the thirtyFiveToFourtyNine property. * * @param value * allowed object is * {@link Double } * */ public void setThirtyFiveToFourtyNine(Double value) { this.thirtyFiveToFourtyNine = value; } /** * Gets the value of the fiftyToSixtyFour property. * * @return * possible object is * {@link Double } * */ public Double getFiftyToSixtyFour() { return fiftyToSixtyFour; } /** * Sets the value of the fiftyToSixtyFour property. * * @param value * allowed object is * {@link Double } * */ public void setFiftyToSixtyFour(Double value) { this.fiftyToSixtyFour = value; } /** * Gets the value of the sixtyFiveAndAbove property. * * @return * possible object is * {@link Double } * */ public Double getSixtyFiveAndAbove() { return sixtyFiveAndAbove; } /** * Sets the value of the sixtyFiveAndAbove property. * * @param value * allowed object is * {@link Double } * */ public void setSixtyFiveAndAbove(Double value) { this.sixtyFiveAndAbove = value; } /** * Gets the value of the ageUnknown property. * * @return * possible object is * {@link Double } * */ public Double getAgeUnknown() { return ageUnknown; } /** * Sets the value of the ageUnknown property. * * @param value * allowed object is * {@link Double } * */ public void setAgeUnknown(Double value) { this.ageUnknown = value; } /** * Gets the value of the female property. * * @return * possible object is * {@link Double } * */ public Double getFemale() { return female; } /** * Sets the value of the female property. * * @param value * allowed object is * {@link Double } * */ public void setFemale(Double value) { this.female = value; } /** * Gets the value of the male property. * * @return * possible object is * {@link Double } * */ public Double getMale() { return male; } /** * Sets the value of the male property. * * @param value * allowed object is * {@link Double } * */ public void setMale(Double value) { this.male = value; } /** * Gets the value of the genderUnknown property. * * @return * possible object is * {@link Double } * */ public Double getGenderUnknown() { return genderUnknown; } /** * Sets the value of the genderUnknown property. * * @param value * allowed object is * {@link Double } * */ public void setGenderUnknown(Double value) { this.genderUnknown = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy