![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.RenderEmailTemplateError 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RenderEmailTemplateError complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RenderEmailTemplateError">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="statusCode" type="{urn:partner.soap.sforce.com}StatusCode"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RenderEmailTemplateError", propOrder = {
"fieldName",
"message",
"offset",
"statusCode"
})
public class RenderEmailTemplateError {
@XmlElement(required = true)
protected String fieldName;
@XmlElement(required = true)
protected String message;
protected int offset;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected StatusCode statusCode;
/**
* Gets the value of the fieldName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldName() {
return fieldName;
}
/**
* Sets the value of the fieldName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldName(String value) {
this.fieldName = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the offset property.
*
*/
public int getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
*/
public void setOffset(int value) {
this.offset = value;
}
/**
* Gets the value of the statusCode property.
*
* @return
* possible object is
* {@link StatusCode }
*
*/
public StatusCode getStatusCode() {
return statusCode;
}
/**
* Sets the value of the statusCode property.
*
* @param value
* allowed object is
* {@link StatusCode }
*
*/
public void setStatusCode(StatusCode value) {
this.statusCode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy