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