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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.FolderShare 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 FolderShare complex type. * *

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

 * <complexType name="FolderShare">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="accessLevel" type="{http://soap.sforce.com/2006/04/metadata}FolderShareAccessLevel"/>
 *         <element name="sharedTo" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sharedToType" type="{http://soap.sforce.com/2006/04/metadata}FolderSharedToType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FolderShare", propOrder = { "accessLevel", "sharedTo", "sharedToType" }) public class FolderShare { @XmlElement(required = true) protected FolderShareAccessLevel accessLevel; @XmlElement(required = true) protected String sharedTo; @XmlElement(required = true) protected FolderSharedToType sharedToType; /** * Gets the value of the accessLevel property. * * @return * possible object is * {@link FolderShareAccessLevel } * */ public FolderShareAccessLevel getAccessLevel() { return accessLevel; } /** * Sets the value of the accessLevel property. * * @param value * allowed object is * {@link FolderShareAccessLevel } * */ public void setAccessLevel(FolderShareAccessLevel value) { this.accessLevel = value; } /** * Gets the value of the sharedTo property. * * @return * possible object is * {@link String } * */ public String getSharedTo() { return sharedTo; } /** * Sets the value of the sharedTo property. * * @param value * allowed object is * {@link String } * */ public void setSharedTo(String value) { this.sharedTo = value; } /** * Gets the value of the sharedToType property. * * @return * possible object is * {@link FolderSharedToType } * */ public FolderSharedToType getSharedToType() { return sharedToType; } /** * Sets the value of the sharedToType property. * * @param value * allowed object is * {@link FolderSharedToType } * */ public void setSharedToType(FolderSharedToType value) { this.sharedToType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy