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

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

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

 * <complexType name="DashboardTableColumn">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="aggregateType" type="{http://soap.sforce.com/2006/04/metadata}ReportSummaryType" minOccurs="0"/>
 *         <element name="column" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="showTotal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sortBy" type="{http://soap.sforce.com/2006/04/metadata}DashboardComponentFilter" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DashboardTableColumn", propOrder = { "aggregateType", "column", "showTotal", "sortBy" }) public class DashboardTableColumn { protected ReportSummaryType aggregateType; @XmlElement(required = true) protected String column; protected Boolean showTotal; protected DashboardComponentFilter sortBy; /** * Gets the value of the aggregateType property. * * @return * possible object is * {@link ReportSummaryType } * */ public ReportSummaryType getAggregateType() { return aggregateType; } /** * Sets the value of the aggregateType property. * * @param value * allowed object is * {@link ReportSummaryType } * */ public void setAggregateType(ReportSummaryType value) { this.aggregateType = value; } /** * Gets the value of the column property. * * @return * possible object is * {@link String } * */ public String getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link String } * */ public void setColumn(String value) { this.column = value; } /** * Gets the value of the showTotal property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShowTotal() { return showTotal; } /** * Sets the value of the showTotal property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowTotal(Boolean value) { this.showTotal = value; } /** * Gets the value of the sortBy property. * * @return * possible object is * {@link DashboardComponentFilter } * */ public DashboardComponentFilter getSortBy() { return sortBy; } /** * Sets the value of the sortBy property. * * @param value * allowed object is * {@link DashboardComponentFilter } * */ public void setSortBy(DashboardComponentFilter value) { this.sortBy = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy