net.accelbyte.sdk.api.platform.operations.reward.QueryRewards Maven / Gradle / Ivy
Show all versions of sdk Show documentation
/*
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
* This is licensed software from AccelByte Inc, for limitations
* and restrictions contact your company contract manager.
*
* Code generated. DO NOT EDIT.
*/
package net.accelbyte.sdk.api.platform.operations.reward;
import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.platform.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;
/**
* queryRewards
*
* This API is used to query rewards by criteria.
*
*
Other detail info:
*
*
* Returns : the list of rewards
*/
@Getter
@Setter
public class QueryRewards extends Operation {
/** generated field's value */
private String path = "/platform/admin/namespaces/{namespace}/rewards/byCriteria";
private String method = "GET";
private List consumes = Arrays.asList();
private List produces = Arrays.asList("application/json");
private String locationQuery = null;
/** fields as input parameter */
private String namespace;
private String eventTopic;
private Integer limit;
private Integer offset;
private List sortBy;
/**
* @param namespace required
*/
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public QueryRewards(
String namespace, String eventTopic, Integer limit, Integer offset, List sortBy) {
this.namespace = namespace;
this.eventTopic = eventTopic;
this.limit = limit;
this.offset = offset;
this.sortBy = sortBy;
securities.add("Bearer");
}
@Override
public Map getPathParams() {
Map pathParams = new HashMap<>();
if (this.namespace != null) {
pathParams.put("namespace", this.namespace);
}
return pathParams;
}
@Override
public Map> getQueryParams() {
Map> queryParams = new HashMap<>();
queryParams.put("eventTopic", this.eventTopic == null ? null : Arrays.asList(this.eventTopic));
queryParams.put("limit", this.limit == null ? null : Arrays.asList(String.valueOf(this.limit)));
queryParams.put(
"offset", this.offset == null ? null : Arrays.asList(String.valueOf(this.offset)));
queryParams.put(
"sortBy",
this.sortBy == null
? null
: this.sortBy.stream()
.map(i -> String.valueOf(i))
.collect(java.util.stream.Collectors.toList()));
return queryParams;
}
@Override
public boolean isValid() {
if (this.namespace == null) {
return false;
}
return true;
}
public RewardPagingSlicedResult parseResponse(int code, String contentType, InputStream payload)
throws HttpResponseException, IOException {
if (code != 200) {
final String json = Helper.convertInputStreamToString(payload);
throw new HttpResponseException(code, json);
}
final String json = Helper.convertInputStreamToString(payload);
return new RewardPagingSlicedResult().createFromJson(json);
}
@Override
protected Map getCollectionFormatMap() {
Map result = new HashMap<>();
result.put("eventTopic", "None");
result.put("limit", "None");
result.put("offset", "None");
result.put("sortBy", "csv");
return result;
}
public enum SortBy {
Namespace("namespace"),
Namespaceasc("namespace:asc"),
Namespacedesc("namespace:desc"),
RewardCode("rewardCode"),
RewardCodeasc("rewardCode:asc"),
RewardCodedesc("rewardCode:desc");
private String value;
SortBy(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
}
public static class QueryRewardsBuilder {
private List sortBy;
public QueryRewardsBuilder sortBy(final List sortBy) {
this.sortBy = sortBy;
return this;
}
public QueryRewardsBuilder sortByFromEnum(final List sortBy) {
ArrayList en = new ArrayList();
for (SortBy e : sortBy) en.add(e.toString());
this.sortBy = en;
return this;
}
}
}