
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LeadOwnerSharingRule 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 LeadOwnerSharingRule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LeadOwnerSharingRule">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}OwnerSharingRule">
* <sequence>
* <element name="leadAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}ShareAccessLevelReadEdit"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LeadOwnerSharingRule", propOrder = {
"leadAccessLevel",
"name"
})
public class LeadOwnerSharingRule
extends OwnerSharingRule
{
@XmlElement(required = true)
protected ShareAccessLevelReadEdit leadAccessLevel;
@XmlElement(required = true)
protected String name;
/**
* Gets the value of the leadAccessLevel property.
*
* @return
* possible object is
* {@link ShareAccessLevelReadEdit }
*
*/
public ShareAccessLevelReadEdit getLeadAccessLevel() {
return leadAccessLevel;
}
/**
* Sets the value of the leadAccessLevel property.
*
* @param value
* allowed object is
* {@link ShareAccessLevelReadEdit }
*
*/
public void setLeadAccessLevel(ShareAccessLevelReadEdit value) {
this.leadAccessLevel = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy