
com.ksc.live.model.LiveResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksc-sdk-java-live Show documentation
Show all versions of ksc-sdk-java-live Show documentation
The KSC SDK for Java - live module holds the classes that is used
by the individual service clients to interact with KSC Web Services.
Users need to depend on live-java-sdk artifact for accessing individual client classes.
The newest version!
package com.ksc.live.model;
import com.ksc.internal.SdkInternalList;
import java.util.List;
public class LiveResult {
private int errno;
private String errmsg;
private int count;
private int total;
private List result;
public int getErrno() {
return errno;
}
public String getErrmsg() {
return errmsg;
}
public int getCount() {
return count;
}
public int getTotal() {
return total;
}
public List getResult() {
return result;
}
public void setErrno(int errno) {
this.errno = errno;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public void setCount(int count) {
this.count = count;
}
public void setTotal(int total) {
this.total = total;
}
public void setResult(List result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy