com.microsoft.bingads.v13.customermanagement.AccountInfoWithCustomerData 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.customermanagement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AccountInfoWithCustomerData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountInfoWithCustomerData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CustomerId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="CustomerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="AccountName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AccountNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AccountLifeCycleStatus" type="{https://bingads.microsoft.com/Customer/v13/Entities}AccountLifeCycleStatus" minOccurs="0"/>
* <element name="PauseReason" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountInfoWithCustomerData", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"customerId",
"customerName",
"accountId",
"accountName",
"accountNumber",
"accountLifeCycleStatus",
"pauseReason"
})
public class AccountInfoWithCustomerData {
@XmlElement(name = "CustomerId", nillable = true)
protected Long customerId;
@XmlElement(name = "CustomerName", nillable = true)
protected String customerName;
@XmlElement(name = "AccountId")
protected Long accountId;
@XmlElement(name = "AccountName", nillable = true)
protected String accountName;
@XmlElement(name = "AccountNumber", nillable = true)
protected String accountNumber;
@XmlElement(name = "AccountLifeCycleStatus")
@XmlSchemaType(name = "string")
protected AccountLifeCycleStatus accountLifeCycleStatus;
@XmlElement(name = "PauseReason", nillable = true)
@XmlSchemaType(name = "unsignedByte")
protected Short pauseReason;
/**
* Gets the value of the customerId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCustomerId(Long value) {
this.customerId = value;
}
/**
* Gets the value of the customerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerName() {
return customerName;
}
/**
* Sets the value of the customerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerName(String value) {
this.customerName = value;
}
/**
* 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 accountLifeCycleStatus property.
*
* @return
* possible object is
* {@link AccountLifeCycleStatus }
*
*/
public AccountLifeCycleStatus getAccountLifeCycleStatus() {
return accountLifeCycleStatus;
}
/**
* Sets the value of the accountLifeCycleStatus property.
*
* @param value
* allowed object is
* {@link AccountLifeCycleStatus }
*
*/
public void setAccountLifeCycleStatus(AccountLifeCycleStatus value) {
this.accountLifeCycleStatus = value;
}
/**
* Gets the value of the pauseReason property.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getPauseReason() {
return pauseReason;
}
/**
* Sets the value of the pauseReason property.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setPauseReason(Short value) {
this.pauseReason = value;
}
}