![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.OwnerChangeOption 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 OwnerChangeOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OwnerChangeOption">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{urn:partner.soap.sforce.com}OwnerChangeOptionType"/>
* <element name="execute" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OwnerChangeOption", propOrder = {
"type",
"execute"
})
public class OwnerChangeOption {
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected OwnerChangeOptionType type;
protected boolean execute;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link OwnerChangeOptionType }
*
*/
public OwnerChangeOptionType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link OwnerChangeOptionType }
*
*/
public void setType(OwnerChangeOptionType value) {
this.type = value;
}
/**
* Gets the value of the execute property.
*
*/
public boolean isExecute() {
return execute;
}
/**
* Sets the value of the execute property.
*
*/
public void setExecute(boolean value) {
this.execute = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy