com.microsoft.bingads.v13.campaignmanagement.LabelAssociation 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 LabelAssociation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LabelAssociation", propOrder = {
"entityId",
"labelId"
})
public class LabelAssociation {
@XmlElement(name = "EntityId")
protected long entityId;
@XmlElement(name = "LabelId")
protected long labelId;
/**
* Gets the value of the entityId property.
*
*/
public long getEntityId() {
return entityId;
}
/**
* Sets the value of the entityId property.
*
*/
public void setEntityId(long value) {
this.entityId = value;
}
/**
* Gets the value of the labelId property.
*
*/
public long getLabelId() {
return labelId;
}
/**
* Sets the value of the labelId property.
*
*/
public void setLabelId(long value) {
this.labelId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy