com.microsoft.bingads.v13.customermanagement.PilotFeature Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customermanagement;
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 PilotFeature complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PilotFeature", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"id",
"countries"
})
public class PilotFeature {
@XmlElement(name = "Id")
protected Integer id;
@XmlElement(name = "Countries", nillable = true)
protected ArrayOfstring countries;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId(Integer value) {
this.id = value;
}
/**
* Gets the value of the countries property.
*
* @return
* possible object is
* {@link ArrayOfstring }
*
*/
public ArrayOfstring getCountries() {
return countries;
}
/**
* Sets the value of the countries property.
*
* @param value
* allowed object is
* {@link ArrayOfstring }
*
*/
public void setCountries(ArrayOfstring value) {
this.countries = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy