58 lines
1.6 KiB
Java
58 lines
1.6 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 IDuplicateResult {
|
|
|
|
/**
|
|
* element : allowSave of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getAllowSave();
|
|
|
|
public boolean isAllowSave();
|
|
|
|
public void setAllowSave(boolean allowSave);
|
|
|
|
/**
|
|
* element : duplicateRule of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getDuplicateRule();
|
|
|
|
public void setDuplicateRule(java.lang.String duplicateRule);
|
|
|
|
/**
|
|
* element : duplicateRuleEntityType of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getDuplicateRuleEntityType();
|
|
|
|
public void setDuplicateRuleEntityType(java.lang.String duplicateRuleEntityType);
|
|
|
|
/**
|
|
* element : errorMessage of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getErrorMessage();
|
|
|
|
public void setErrorMessage(java.lang.String errorMessage);
|
|
|
|
/**
|
|
* element : matchResults of type {urn:partner.soap.sforce.com}MatchResult
|
|
* java type: com.sforce.soap.partner.MatchResult[]
|
|
*/
|
|
|
|
public com.sforce.soap.partner.IMatchResult[] getMatchResults();
|
|
|
|
public void setMatchResults(com.sforce.soap.partner.IMatchResult[] matchResults);
|
|
|
|
|
|
}
|