net.accelbyte.sdk.api.group.operations.group_member.RejectGroupInvitationPublicV1 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.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;
/**
* rejectGroupInvitationPublicV1
*
* Required valid user authentication
*
*
This endpoint is used to reject group invitation.
*
*
Reject group invitation. If specific user is not invited in the specific group ID, it will
* show the the error to show if the user is not invited yet.
*
*
Action Code: 73402
*/
@Getter
@Setter
public class RejectGroupInvitationPublicV1 extends Operation {
/** generated field's value */
private String path = "/group/v1/public/namespaces/{namespace}/groups/{groupId}/invite/reject";
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 groupId;
private String namespace;
/**
* @param groupId required
* @param namespace required
*/
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public RejectGroupInvitationPublicV1(String groupId, String namespace) {
this.groupId = groupId;
this.namespace = namespace;
securities.add("Bearer");
}
@Override
public Map getPathParams() {
Map pathParams = new HashMap<>();
if (this.groupId != null) {
pathParams.put("groupId", this.groupId);
}
if (this.namespace != null) {
pathParams.put("namespace", this.namespace);
}
return pathParams;
}
@Override
public boolean isValid() {
if (this.groupId == null) {
return false;
}
if (this.namespace == 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);
}
}