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

com.sforce.soap.tooling.DescribeIconResult Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 DescribeIconResult complex type. * *

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

 * <complexType name="DescribeIconResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="contentType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="theme" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescribeIconResult", propOrder = { "contentType", "height", "theme", "url", "width" }) public class DescribeIconResult { @XmlElement(required = true) protected String contentType; @XmlElement(required = true, type = Integer.class, nillable = true) protected Integer height; @XmlElement(required = true) protected String theme; @XmlElement(required = true) protected String url; @XmlElement(required = true, type = Integer.class, nillable = true) protected Integer width; /** * Gets the value of the contentType property. * * @return * possible object is * {@link String } * */ public String getContentType() { return contentType; } /** * Sets the value of the contentType property. * * @param value * allowed object is * {@link String } * */ public void setContentType(String value) { this.contentType = 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 theme property. * * @return * possible object is * {@link String } * */ public String getTheme() { return theme; } /** * Sets the value of the theme property. * * @param value * allowed object is * {@link String } * */ public void setTheme(String value) { this.theme = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Integer } * */ public Integer getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Integer } * */ public void setWidth(Integer value) { this.width = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy