com.microsoft.bingads.v13.campaignmanagement.CampaignAdGroupIds 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.XmlType;
/**
* Java class for CampaignAdGroupIds complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CampaignAdGroupIds", propOrder = {
"activeAdGroupsOnly",
"adGroupIds",
"campaignId"
})
public class CampaignAdGroupIds {
@XmlElement(name = "ActiveAdGroupsOnly", nillable = true)
protected Boolean activeAdGroupsOnly;
@XmlElement(name = "AdGroupIds", required = true, nillable = true)
protected ArrayOflong adGroupIds;
@XmlElement(name = "CampaignId")
protected long campaignId;
/**
* Gets the value of the activeAdGroupsOnly property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getActiveAdGroupsOnly() {
return activeAdGroupsOnly;
}
/**
* Sets the value of the activeAdGroupsOnly property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setActiveAdGroupsOnly(Boolean value) {
this.activeAdGroupsOnly = value;
}
/**
* Gets the value of the adGroupIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getAdGroupIds() {
return adGroupIds;
}
/**
* Sets the value of the adGroupIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setAdGroupIds(ArrayOflong value) {
this.adGroupIds = value;
}
/**
* Gets the value of the campaignId property.
*
*/
public long getCampaignId() {
return campaignId;
}
/**
* Sets the value of the campaignId property.
*
*/
public void setCampaignId(long value) {
this.campaignId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy