All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.WsRole 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.XmlType;


/**
 * 

Java class for WsRole complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="WsRole">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="role" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="isLoggedInRole" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WsRole", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = { "role", "isDefault", "isInactive", "isLoggedInRole" }) public class WsRole { protected RecordRef role; protected Boolean isDefault; protected Boolean isInactive; protected Boolean isLoggedInRole; /** * Gets the value of the role property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link RecordRef } * */ public void setRole(RecordRef value) { this.role = value; } /** * Gets the value of the isDefault property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsDefault() { return isDefault; } /** * Sets the value of the isDefault property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsDefault(Boolean value) { this.isDefault = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsInactive(Boolean value) { this.isInactive = value; } /** * Gets the value of the isLoggedInRole property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsLoggedInRole() { return isLoggedInRole; } /** * Sets the value of the isLoggedInRole property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsLoggedInRole(Boolean value) { this.isLoggedInRole = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy