com.microsoft.bingads.v13.customermanagement.AccountInfoWithCustomerData Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customermanagement;
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;
/**
* Java class for AccountInfoWithCustomerData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountInfoWithCustomerData", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"customerId",
"customerName",
"accountId",
"accountName",
"accountNumber",
"accountLifeCycleStatus",
"pauseReason",
"accountMode"
})
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;
@XmlElement(name = "AccountMode", nillable = true)
protected String accountMode;
/**
* 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;
}
/**
* Gets the value of the accountMode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountMode() {
return accountMode;
}
/**
* Sets the value of the accountMode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountMode(String value) {
this.accountMode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy