
tsg.ns.wsdl.coop.CustomFieldRoleAccess 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CustomFieldRoleAccess complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomFieldRoleAccess">
* <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="accessLevel" type="{urn:types.customization_2023_1.setup.webservices.netsuite.com}CustomizationAccessLevel" minOccurs="0"/>
* <element name="searchLevel" type="{urn:types.customization_2023_1.setup.webservices.netsuite.com}CustomizationSearchLevel" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomFieldRoleAccess", namespace = "urn:customization_2023_1.setup.webservices.netsuite.com", propOrder = {
"role",
"accessLevel",
"searchLevel"
})
public class CustomFieldRoleAccess {
protected RecordRef role;
@XmlSchemaType(name = "string")
protected CustomizationAccessLevel accessLevel;
@XmlSchemaType(name = "string")
protected CustomizationSearchLevel searchLevel;
/**
* 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 accessLevel property.
*
* @return
* possible object is
* {@link CustomizationAccessLevel }
*
*/
public CustomizationAccessLevel getAccessLevel() {
return accessLevel;
}
/**
* Sets the value of the accessLevel property.
*
* @param value
* allowed object is
* {@link CustomizationAccessLevel }
*
*/
public void setAccessLevel(CustomizationAccessLevel value) {
this.accessLevel = value;
}
/**
* Gets the value of the searchLevel property.
*
* @return
* possible object is
* {@link CustomizationSearchLevel }
*
*/
public CustomizationSearchLevel getSearchLevel() {
return searchLevel;
}
/**
* Sets the value of the searchLevel property.
*
* @param value
* allowed object is
* {@link CustomizationSearchLevel }
*
*/
public void setSearchLevel(CustomizationSearchLevel value) {
this.searchLevel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy