
tsg.ns.wsdl.coop.GetAccountGovernanceInfoResult Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
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 GetAccountGovernanceInfoResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetAccountGovernanceInfoResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}status"/>
* <element name="accountConcurrencyLimit" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="unallocatedConcurrencyLimit" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetAccountGovernanceInfoResult", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"status",
"accountConcurrencyLimit",
"unallocatedConcurrencyLimit"
})
public class GetAccountGovernanceInfoResult {
@XmlElement(required = true)
protected Status status;
protected Long accountConcurrencyLimit;
protected Long unallocatedConcurrencyLimit;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link Status }
*
*/
public Status getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link Status }
*
*/
public void setStatus(Status value) {
this.status = value;
}
/**
* Gets the value of the accountConcurrencyLimit property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getAccountConcurrencyLimit() {
return accountConcurrencyLimit;
}
/**
* Sets the value of the accountConcurrencyLimit property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setAccountConcurrencyLimit(Long value) {
this.accountConcurrencyLimit = value;
}
/**
* Gets the value of the unallocatedConcurrencyLimit property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getUnallocatedConcurrencyLimit() {
return unallocatedConcurrencyLimit;
}
/**
* Sets the value of the unallocatedConcurrencyLimit property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setUnallocatedConcurrencyLimit(Long value) {
this.unallocatedConcurrencyLimit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy