![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribeFlexiPageResult 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 DescribeFlexiPageResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeFlexiPageResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{urn:partner.soap.sforce.com}ID"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="quickActionList" type="{urn:partner.soap.sforce.com}DescribeQuickActionListResult" minOccurs="0"/>
* <element name="regions" type="{urn:partner.soap.sforce.com}DescribeFlexiPageRegion" maxOccurs="unbounded" minOccurs="0"/>
* <element name="sobjectType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="template" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeFlexiPageResult", propOrder = {
"id",
"label",
"name",
"quickActionList",
"regions",
"sobjectType",
"template",
"type"
})
public class DescribeFlexiPageResult {
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
protected String name;
protected DescribeQuickActionListResult quickActionList;
protected List regions;
@XmlElement(nillable = true)
protected String sobjectType;
@XmlElement(required = true, nillable = true)
protected String template;
@XmlElement(required = true)
protected String type;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = 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 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;
}
/**
* Gets the value of the quickActionList property.
*
* @return
* possible object is
* {@link DescribeQuickActionListResult }
*
*/
public DescribeQuickActionListResult getQuickActionList() {
return quickActionList;
}
/**
* Sets the value of the quickActionList property.
*
* @param value
* allowed object is
* {@link DescribeQuickActionListResult }
*
*/
public void setQuickActionList(DescribeQuickActionListResult value) {
this.quickActionList = value;
}
/**
* Gets the value of the regions 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 regions property.
*
*
* For example, to add a new item, do as follows:
*
* getRegions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeFlexiPageRegion }
*
*
*/
public List getRegions() {
if (regions == null) {
regions = new ArrayList();
}
return this.regions;
}
/**
* Gets the value of the sobjectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSobjectType() {
return sobjectType;
}
/**
* Sets the value of the sobjectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSobjectType(String value) {
this.sobjectType = value;
}
/**
* Gets the value of the template property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTemplate() {
return template;
}
/**
* Sets the value of the template property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTemplate(String value) {
this.template = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}