com.sailthru.client.params.job.ExportListDataJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sailthru-java-client Show documentation
Show all versions of sailthru-java-client Show documentation
Java client library for Sailthru API
The newest version!
package com.sailthru.client.params.job;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
/**
*
* @author Prajwal Tuladhar
*/
public class ExportListDataJob extends Job {
private static final String JOB = "export_list_data";
protected String list;
public ExportListDataJob() {
this.job = JOB;
}
public ExportListDataJob setList(String list) {
this.list = list;
return this;
}
@Override
public Type getType() {
return new TypeToken() {}.getType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy