All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.accelbyte.sdk.api.chat.operations.inbox.AdminGetInboxUsers Maven / Gradle / Ivy

The newest version!
/*
 * 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.chat.operations.inbox;

import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.chat.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;

/**
 * adminGetInboxUsers
 *
 * 

Get inbox users */ @Getter @Setter public class AdminGetInboxUsers extends Operation { /** generated field's value */ private String path = "/chat/v1/admin/inbox/namespaces/{namespace}/messages/{inbox}/users"; private String method = "GET"; private List consumes = Arrays.asList("application/json"); private List produces = Arrays.asList("application/json"); private String locationQuery = null; /** fields as input parameter */ private String inbox; private String namespace; private Integer limit; private Integer offset; private String status; private String userId; /** * @param inbox required * @param namespace required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public AdminGetInboxUsers( String inbox, String namespace, Integer limit, Integer offset, String status, String userId) { this.inbox = inbox; this.namespace = namespace; this.limit = limit; this.offset = offset; this.status = status; this.userId = userId; securities.add("Bearer"); } @Override public Map getPathParams() { Map pathParams = new HashMap<>(); if (this.inbox != null) { pathParams.put("inbox", this.inbox); } if (this.namespace != null) { pathParams.put("namespace", this.namespace); } return pathParams; } @Override public Map> getQueryParams() { Map> queryParams = new HashMap<>(); 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("status", this.status == null ? null : Arrays.asList(this.status)); queryParams.put("userId", this.userId == null ? null : Arrays.asList(this.userId)); return queryParams; } @Override public boolean isValid() { if (this.inbox == null) { return false; } if (this.namespace == null) { return false; } return true; } public ModelsGetInboxUsersResponse 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 ModelsGetInboxUsersResponse().createFromJson(json); } @Override protected Map getCollectionFormatMap() { Map result = new HashMap<>(); result.put("limit", "None"); result.put("offset", "None"); result.put("status", "None"); result.put("userId", "None"); return result; } public enum Status { READ("READ"), UNREAD("UNREAD"); private String value; Status(String value) { this.value = value; } @Override public String toString() { return this.value; } } public static class AdminGetInboxUsersBuilder { private String status; public AdminGetInboxUsersBuilder status(final String status) { this.status = status; return this; } public AdminGetInboxUsersBuilder statusFromEnum(final Status status) { this.status = status.toString(); return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy