
tsg.ns.wsdl.coop.ContactAccessRoles 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 ContactAccessRoles complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContactAccessRoles">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="giveAccess" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="contact" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="role" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="password2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sendEmail" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContactAccessRoles", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"giveAccess",
"contact",
"email",
"role",
"password",
"password2",
"sendEmail"
})
public class ContactAccessRoles {
protected Boolean giveAccess;
protected RecordRef contact;
protected String email;
protected RecordRef role;
protected String password;
protected String password2;
protected Boolean sendEmail;
/**
* Gets the value of the giveAccess property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGiveAccess() {
return giveAccess;
}
/**
* Sets the value of the giveAccess property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGiveAccess(Boolean value) {
this.giveAccess = value;
}
/**
* Gets the value of the contact property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getContact() {
return contact;
}
/**
* Sets the value of the contact property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setContact(RecordRef value) {
this.contact = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* 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 password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the password2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword2() {
return password2;
}
/**
* Sets the value of the password2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword2(String value) {
this.password2 = value;
}
/**
* Gets the value of the sendEmail property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSendEmail() {
return sendEmail;
}
/**
* Sets the value of the sendEmail property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSendEmail(Boolean value) {
this.sendEmail = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy