com.microsoft.bingads.v13.customerbilling.BillingDocumentInfo 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.customerbilling;
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 BillingDocumentInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BillingDocumentInfo", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"accountId",
"accountName",
"accountNumber",
"amount",
"currencyCode",
"documentDate",
"documentId",
"customerId"
})
public class BillingDocumentInfo {
@XmlElement(name = "AccountId")
protected Long accountId;
@XmlElement(name = "AccountName", nillable = true)
protected String accountName;
@XmlElement(name = "AccountNumber", nillable = true)
protected String accountNumber;
@XmlElement(name = "Amount")
protected Double amount;
@XmlElement(name = "CurrencyCode", nillable = true)
protected String currencyCode;
@XmlElement(name = "DocumentDate", type = String.class, nillable = true)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar documentDate;
@XmlElement(name = "DocumentId", nillable = true)
protected Long documentId;
@XmlElement(name = "CustomerId", nillable = true)
protected Integer customerId;
/**
* Gets the value of the accountId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getAccountId() {
return accountId;
}
/**
* Sets the value of the accountId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setAccountId(Long value) {
this.accountId = value;
}
/**
* Gets the value of the accountName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountName() {
return accountName;
}
/**
* Sets the value of the accountName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountName(String value) {
this.accountName = value;
}
/**
* Gets the value of the accountNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountNumber() {
return accountNumber;
}
/**
* Sets the value of the accountNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountNumber(String value) {
this.accountNumber = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAmount(Double value) {
this.amount = value;
}
/**
* Gets the value of the currencyCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurrencyCode() {
return currencyCode;
}
/**
* Sets the value of the currencyCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCurrencyCode(String value) {
this.currencyCode = value;
}
/**
* Gets the value of the documentDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getDocumentDate() {
return documentDate;
}
/**
* Sets the value of the documentDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentDate(Calendar value) {
this.documentDate = value;
}
/**
* Gets the value of the documentId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getDocumentId() {
return documentId;
}
/**
* Sets the value of the documentId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setDocumentId(Long value) {
this.documentId = value;
}
/**
* Gets the value of the customerId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCustomerId(Integer value) {
this.customerId = value;
}
}