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

com.sforce.soap.partner.DescribePathAssistant Maven / Gradle / Ivy


package com.sforce.soap.partner;

import java.util.ArrayList;
import java.util.List;
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 DescribePathAssistant complex type. * *

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

 * <complexType name="DescribePathAssistant">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="apiName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pathPicklistField" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="picklistsForRecordType" type="{urn:partner.soap.sforce.com}PicklistForRecordType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="recordTypeId" type="{urn:partner.soap.sforce.com}ID"/>
 *         <element name="steps" type="{urn:partner.soap.sforce.com}DescribePathAssistantStep" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescribePathAssistant", propOrder = { "active", "apiName", "label", "pathPicklistField", "picklistsForRecordType", "recordTypeId", "steps" }) public class DescribePathAssistant { protected boolean active; @XmlElement(required = true) protected String apiName; @XmlElement(required = true) protected String label; @XmlElement(required = true) protected String pathPicklistField; @XmlElement(nillable = true) protected List picklistsForRecordType; @XmlElement(required = true, nillable = true) protected String recordTypeId; protected List steps; /** * Gets the value of the active property. * */ public boolean isActive() { return active; } /** * Sets the value of the active property. * */ public void setActive(boolean value) { this.active = value; } /** * Gets the value of the apiName property. * * @return * possible object is * {@link String } * */ public String getApiName() { return apiName; } /** * Sets the value of the apiName property. * * @param value * allowed object is * {@link String } * */ public void setApiName(String value) { this.apiName = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the pathPicklistField property. * * @return * possible object is * {@link String } * */ public String getPathPicklistField() { return pathPicklistField; } /** * Sets the value of the pathPicklistField property. * * @param value * allowed object is * {@link String } * */ public void setPathPicklistField(String value) { this.pathPicklistField = value; } /** * Gets the value of the picklistsForRecordType property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the picklistsForRecordType property. * *

* For example, to add a new item, do as follows: *

     *    getPicklistsForRecordType().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PicklistForRecordType } * * */ public List getPicklistsForRecordType() { if (picklistsForRecordType == null) { picklistsForRecordType = new ArrayList(); } return this.picklistsForRecordType; } /** * Gets the value of the recordTypeId property. * * @return * possible object is * {@link String } * */ public String getRecordTypeId() { return recordTypeId; } /** * Sets the value of the recordTypeId property. * * @param value * allowed object is * {@link String } * */ public void setRecordTypeId(String value) { this.recordTypeId = value; } /** * Gets the value of the steps property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the steps property. * *

* For example, to add a new item, do as follows: *

     *    getSteps().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DescribePathAssistantStep } * * */ public List getSteps() { if (steps == null) { steps = new ArrayList(); } return this.steps; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy