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

com.palominolabs.crm.sf.soap.jaxwsstub.apex.DeleteApexResult Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version

package com.palominolabs.crm.sf.soap.jaxwsstub.apex;

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

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

 * <complexType name="DeleteApexResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://soap.sforce.com/2006/08/apex}ID"/>
 *         <element name="problem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="success" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeleteApexResult", propOrder = { "id", "problem", "success" }) public class DeleteApexResult { @XmlElement(required = true, nillable = true) protected String id; protected String problem; protected boolean success; /** * 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 problem property. * * @return * possible object is * {@link String } * */ public String getProblem() { return problem; } /** * Sets the value of the problem property. * * @param value * allowed object is * {@link String } * */ public void setProblem(String value) { this.problem = value; } /** * Gets the value of the success property. * */ public boolean isSuccess() { return success; } /** * Sets the value of the success property. * */ public void setSuccess(boolean value) { this.success = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy