com.sforce.soap.tooling.metadata.AnalyticsCloudComponentLayoutItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling.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 AnalyticsCloudComponentLayoutItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AnalyticsCloudComponentLayoutItem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="assetType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="devName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="hideOnError" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="showTitle" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AnalyticsCloudComponentLayoutItem", propOrder = {
"assetType",
"devName",
"error",
"filter",
"height",
"hideOnError",
"showTitle",
"width"
})
public class AnalyticsCloudComponentLayoutItem {
@XmlElement(required = true)
protected String assetType;
@XmlElement(required = true)
protected String devName;
protected String error;
protected String filter;
protected Integer height;
protected Boolean hideOnError;
protected Boolean showTitle;
protected String width;
/**
* Gets the value of the assetType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetType() {
return assetType;
}
/**
* Sets the value of the assetType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetType(String value) {
this.assetType = value;
}
/**
* Gets the value of the devName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDevName() {
return devName;
}
/**
* Sets the value of the devName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDevName(String value) {
this.devName = value;
}
/**
* 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 Integer }
*
*/
public Integer getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHeight(Integer value) {
this.height = value;
}
/**
* Gets the value of the hideOnError property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHideOnError() {
return hideOnError;
}
/**
* Sets the value of the hideOnError property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHideOnError(Boolean value) {
this.hideOnError = value;
}
/**
* Gets the value of the showTitle property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowTitle() {
return showTitle;
}
/**
* Sets the value of the showTitle property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
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;
}
}