38 lines
1.0 KiB
Java
38 lines
1.0 KiB
Java
|
|
package com.sforce.soap.partner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface ISoqlSubQueryCondition extends com.sforce.soap.partner.ISoqlWhereCondition {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : field of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getField();
|
||
|
|
|
||
|
|
public void setField(java.lang.String field);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : operator of type {urn:partner.soap.sforce.com}soqlOperator
|
||
|
|
* java type: com.sforce.soap.partner.SoqlOperator
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.SoqlOperator getOperator();
|
||
|
|
|
||
|
|
public void setOperator(com.sforce.soap.partner.SoqlOperator operator);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : subQuery of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getSubQuery();
|
||
|
|
|
||
|
|
public void setSubQuery(java.lang.String subQuery);
|
||
|
|
|
||
|
|
|
||
|
|
}
|