com.microsoft.bingads.v13.campaignmanagement.OnlineConversionAdjustment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
package com.microsoft.bingads.v13.campaignmanagement;
import java.util.Calendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for OnlineConversionAdjustment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OnlineConversionAdjustment", propOrder = {
"adjustmentCurrencyCode",
"adjustmentTime",
"adjustmentType",
"adjustmentValue",
"conversionName",
"transactionId"
})
public class OnlineConversionAdjustment {
@XmlElement(name = "AdjustmentCurrencyCode", nillable = true)
protected String adjustmentCurrencyCode;
@XmlElement(name = "AdjustmentTime", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar adjustmentTime;
@XmlElement(name = "AdjustmentType", nillable = true)
protected String adjustmentType;
@XmlElement(name = "AdjustmentValue", nillable = true)
protected Double adjustmentValue;
@XmlElement(name = "ConversionName", nillable = true)
protected String conversionName;
@XmlElement(name = "TransactionId", nillable = true)
protected String transactionId;
/**
* Gets the value of the adjustmentCurrencyCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdjustmentCurrencyCode() {
return adjustmentCurrencyCode;
}
/**
* Sets the value of the adjustmentCurrencyCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdjustmentCurrencyCode(String value) {
this.adjustmentCurrencyCode = value;
}
/**
* Gets the value of the adjustmentTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getAdjustmentTime() {
return adjustmentTime;
}
/**
* Sets the value of the adjustmentTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdjustmentTime(Calendar value) {
this.adjustmentTime = value;
}
/**
* Gets the value of the adjustmentType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdjustmentType() {
return adjustmentType;
}
/**
* Sets the value of the adjustmentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdjustmentType(String value) {
this.adjustmentType = value;
}
/**
* Gets the value of the adjustmentValue property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAdjustmentValue() {
return adjustmentValue;
}
/**
* Sets the value of the adjustmentValue property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAdjustmentValue(Double value) {
this.adjustmentValue = value;
}
/**
* Gets the value of the conversionName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConversionName() {
return conversionName;
}
/**
* Sets the value of the conversionName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConversionName(String value) {
this.conversionName = value;
}
/**
* Gets the value of the transactionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransactionId() {
return transactionId;
}
/**
* Sets the value of the transactionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransactionId(String value) {
this.transactionId = value;
}
}