com.sforce.soap.partner.AnalyticsCloudComponent Maven / Gradle / Ivy
package com.sforce.soap.partner;
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 AnalyticsCloudComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AnalyticsCloudComponent">
* <complexContent>
* <extension base="{urn:partner.soap.sforce.com}DescribeLayoutComponent">
* <sequence>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hideOnError" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="showTitle" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AnalyticsCloudComponent", propOrder = {
"error",
"filter",
"height",
"hideOnError",
"showTitle",
"width"
})
public class AnalyticsCloudComponent
extends DescribeLayoutComponent
{
@XmlElement(required = true)
protected String error;
@XmlElement(required = true)
protected String filter;
@XmlElement(required = true)
protected String height;
protected boolean hideOnError;
protected boolean showTitle;
@XmlElement(required = true)
protected String width;
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setError(String value) {
this.error = value;
}
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilter(String value) {
this.filter = value;
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHeight(String value) {
this.height = value;
}
/**
* Gets the value of the hideOnError property.
*
*/
public boolean isHideOnError() {
return hideOnError;
}
/**
* Sets the value of the hideOnError property.
*
*/
public void setHideOnError(boolean value) {
this.hideOnError = value;
}
/**
* Gets the value of the showTitle property.
*
*/
public boolean isShowTitle() {
return showTitle;
}
/**
* Sets the value of the showTitle property.
*
*/
public void setShowTitle(boolean value) {
this.showTitle = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWidth(String value) {
this.width = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy