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

net.accelbyte.sdk.api.group.operations.group_member.AcceptGroupJoinRequestPublicV1 Maven / Gradle / Ivy

There is a newer version: 0.69.0
Show 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.group.operations.group_member;

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

/**
 * acceptGroupJoinRequestPublicV1
 *
 * 

Required valid user authentication * *

Required Member Role Permission: "GROUP:JOIN [CREATE]" * *

This endpoint is used to accept group join request. * *

Accept group join request. If specific user is not asked to join the specific group ID, it * will show the the error to show if the user is not asked to join yet. * *

This endpoint will also check if the specific user is already joined to specific group * *

Action Code: 73407 */ @Getter @Setter public class AcceptGroupJoinRequestPublicV1 extends Operation { /** generated field's value */ private String path = "/group/v1/public/namespaces/{namespace}/users/{userId}/join/accept"; private String method = "POST"; 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 userId; /** * @param namespace required * @param userId required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public AcceptGroupJoinRequestPublicV1(String namespace, String userId) { this.namespace = namespace; this.userId = userId; securities.add("Bearer"); } @Override public Map getPathParams() { Map pathParams = new HashMap<>(); if (this.namespace != null) { pathParams.put("namespace", this.namespace); } if (this.userId != null) { pathParams.put("userId", this.userId); } return pathParams; } @Override public boolean isValid() { if (this.namespace == null) { return false; } if (this.userId == null) { return false; } return true; } public ModelsMemberRequestGroupResponseV1 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 ModelsMemberRequestGroupResponseV1().createFromJson(json); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy