Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.tinypass.client.publisher.api.PublisherPromotionTermApi Maven / Gradle / Ivy
package com.tinypass.client.publisher.api;
import com.tinypass.client.common.*;
import com.tinypass.client.publisher.model.Term;
import java.util.*;
import java.math.*;
import java.io.*;
public class PublisherPromotionTermApi {
private String basePath = "https://api.piano.io/api/v3";
private String token;
private ApiInvoker apiInvoker = null;
private Map headerParams = new LinkedHashMap();
public PublisherPromotionTermApi(String basePath, String token) {
this.basePath = basePath;
this.token = token;
}
public PublisherPromotionTermApi(String basePath, String token, ApiInvoker invoker, Map headerParams) {
this(basePath, token);
this.apiInvoker = invoker;
this.headerParams = headerParams;
}
public ApiInvoker getInvoker() {
if(apiInvoker == null) apiInvoker = ApiInvoker.getInstance();
return apiInvoker;
}
public void setApiToken(String token){
this.token = token;
}
public void setBasePath(String basePath) {
this.basePath = basePath;
}
public String getBasePath() {
return basePath;
}
public String toQueryParam(Object arg) {
if(arg == null)
return null;
if (arg instanceof Date) {
Date date = (Date) arg;
long epochTime = date.getTime() / 1000;
return String.valueOf(epochTime);
} else {
return String.valueOf(arg);
}
}
public void setQueryParam(Map> params, String paramName, Object value) {
List currentValues = params.computeIfAbsent(paramName, k -> new ArrayList<>());
if (value instanceof List) {
List values = (List) value;
values.forEach(o -> addQueryParam(currentValues, o));
} else {
addQueryParam(currentValues, value);
}
}
private void addQueryParam(List currentValues, Object value) {
String v = toQueryParam(value);
if (v != null)
currentValues.add(v);
}
/**
* API Request for addTerm
*/
public class addTermRequest implements ApiRequest {
Map headerParams;
Map> queryParams = new HashMap<>();
Map> formParams = new HashMap<>();
Object body = null;
public addTermRequest(Map headerParams) {
this.headerParams = headerParams;
}
public Map> getPreparedFormParams() {
return Collections.unmodifiableMap(formParams);
}
public addTermRequest termId(String termId) {
setQueryParam(this.formParams, "term_id", termId);
return this;
}
public addTermRequest aid(String aid) {
setQueryParam(this.formParams, "aid", aid);
return this;
}
public addTermRequest promotionId(String promotionId) {
setQueryParam(this.formParams, "promotion_id", promotionId);
return this;
}
public void execute() throws ApiException{
String path = "/publisher/promotion/term/add".replaceAll("\\{format\\}","json");
getInvoker().invokeAPI(basePath, path, "POST", token,
queryParams, null,
headerParams,
formParams,
null,
null);
}
}
/**
* Helper method to create a new request.
*/
public addTermRequest addTermRequest(){
return new addTermRequest(headerParams);
}
/**
* API Request for deleteTerms
*/
public class deleteTermsRequest implements ApiRequest {
Map headerParams;
Map> queryParams = new HashMap<>();
Map> formParams = new HashMap<>();
Object body = null;
public deleteTermsRequest(Map headerParams) {
this.headerParams = headerParams;
}
public Map> getPreparedFormParams() {
return Collections.unmodifiableMap(formParams);
}
public deleteTermsRequest termId(String termId) {
setQueryParam(this.formParams, "term_id", termId);
return this;
}
public deleteTermsRequest aid(String aid) {
setQueryParam(this.formParams, "aid", aid);
return this;
}
public deleteTermsRequest promotionId(String promotionId) {
setQueryParam(this.formParams, "promotion_id", promotionId);
return this;
}
public void execute() throws ApiException{
String path = "/publisher/promotion/term/delete".replaceAll("\\{format\\}","json");
getInvoker().invokeAPI(basePath, path, "POST", token,
queryParams, null,
headerParams,
formParams,
null,
null);
}
}
/**
* Helper method to create a new request.
*/
public deleteTermsRequest deleteTermsRequest(){
return new deleteTermsRequest(headerParams);
}
/**
* API Request for termList
*/
public class termListRequest implements ApiRequest {
Map headerParams;
Map> queryParams = new HashMap<>();
Map> formParams = new HashMap<>();
Object body = null;
public termListRequest(Map headerParams) {
this.headerParams = headerParams;
}
public Map> getPreparedFormParams() {
return Collections.unmodifiableMap(formParams);
}
public termListRequest promotionId(String promotionId) {
setQueryParam(this.queryParams, "promotion_id", promotionId);
return this;
}
public termListRequest aid(String aid) {
setQueryParam(this.queryParams, "aid", aid);
return this;
}
public termListRequest orderBy(String orderBy) {
setQueryParam(this.queryParams, "order_by", orderBy);
return this;
}
public termListRequest orderDirection(String orderDirection) {
setQueryParam(this.queryParams, "order_direction", orderDirection);
return this;
}
public termListRequest q(String q) {
setQueryParam(this.queryParams, "q", q);
return this;
}
public termListRequest offset(Integer offset) {
setQueryParam(this.queryParams, "offset", offset);
return this;
}
public termListRequest limit(Integer limit) {
setQueryParam(this.queryParams, "limit", limit);
return this;
}
public PageList execute() throws ApiException{
String path = "/publisher/promotion/term/list".replaceAll("\\{format\\}","json");
return getInvoker().invokeAPI(basePath, path, "GET", token,
queryParams, null,
headerParams,
formParams,
"array",
Term.class);
}
}
/**
* Helper method to create a new request.
*/
public termListRequest termListRequest(){
return new termListRequest(headerParams);
}
}