
tsg.ns.wsdl.coop.SessionResponse 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 SessionResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SessionResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}status"/>
* <element name="userId" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}wsRoleList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SessionResponse", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = {
"status",
"userId",
"wsRoleList"
})
public class SessionResponse {
@XmlElement(namespace = "urn:core_2023_1.platform.webservices.netsuite.com", required = true)
protected Status status;
protected RecordRef userId;
@XmlElement(namespace = "urn:core_2023_1.platform.webservices.netsuite.com")
protected WsRoleList wsRoleList;
/**
* 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 userId property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setUserId(RecordRef value) {
this.userId = value;
}
/**
* Gets the value of the wsRoleList property.
*
* @return
* possible object is
* {@link WsRoleList }
*
*/
public WsRoleList getWsRoleList() {
return wsRoleList;
}
/**
* Sets the value of the wsRoleList property.
*
* @param value
* allowed object is
* {@link WsRoleList }
*
*/
public void setWsRoleList(WsRoleList value) {
this.wsRoleList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy