
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.NextAutomatedApprover Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for NextAutomatedApprover complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NextAutomatedApprover">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="useApproverFieldOfRecordOwner" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="userHierarchyField" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NextAutomatedApprover", propOrder = {
"useApproverFieldOfRecordOwner",
"userHierarchyField"
})
public class NextAutomatedApprover {
protected Boolean useApproverFieldOfRecordOwner;
@XmlElement(required = true)
protected String userHierarchyField;
/**
* Gets the value of the useApproverFieldOfRecordOwner property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUseApproverFieldOfRecordOwner() {
return useApproverFieldOfRecordOwner;
}
/**
* Sets the value of the useApproverFieldOfRecordOwner property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUseApproverFieldOfRecordOwner(Boolean value) {
this.useApproverFieldOfRecordOwner = value;
}
/**
* Gets the value of the userHierarchyField property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserHierarchyField() {
return userHierarchyField;
}
/**
* Sets the value of the userHierarchyField property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserHierarchyField(String value) {
this.userHierarchyField = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy