38 lines
806 B
Java
38 lines
806 B
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 ILimitInfo {
|
|
|
|
/**
|
|
* element : current of type {http://www.w3.org/2001/XMLSchema}long
|
|
* java type: long
|
|
*/
|
|
|
|
public long getCurrent();
|
|
|
|
public void setCurrent(long current);
|
|
|
|
/**
|
|
* element : limit of type {http://www.w3.org/2001/XMLSchema}long
|
|
* java type: long
|
|
*/
|
|
|
|
public long getLimit();
|
|
|
|
public void setLimit(long limit);
|
|
|
|
/**
|
|
* element : type of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getType();
|
|
|
|
public void setType(java.lang.String type);
|
|
|
|
|
|
}
|