net.accelbyte.sdk.api.lobby.ws_models.UnblockPlayerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
AccelByte Gaming Services Java Extend SDK generated from OpenAPI specs
/*
* 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.lobby.ws_models;
import static net.accelbyte.sdk.core.util.Helper.generateUUID;
import static net.accelbyte.sdk.core.util.Helper.parseWSM;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class UnblockPlayerRequest {
private String id;
private String namespace;
private String unblockedUserId;
private UnblockPlayerRequest() {}
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public UnblockPlayerRequest(String id, String namespace, String unblockedUserId) {
this.id = id;
this.namespace = namespace;
this.unblockedUserId = unblockedUserId;
}
public static String getType() {
return "unblockPlayerRequest";
}
public static UnblockPlayerRequest createFromWSM(String message) {
UnblockPlayerRequest result = new UnblockPlayerRequest();
Map response = parseWSM(message);
result.id = response.get("id") != null ? response.get("id") : null;
result.namespace = response.get("namespace") != null ? response.get("namespace") : null;
result.unblockedUserId =
response.get("unblockedUserId") != null ? response.get("unblockedUserId") : null;
return result;
}
public String toWSM() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("type: ").append(UnblockPlayerRequest.getType());
if (id != null) {
stringBuilder.append("\n").append("id: ").append(id);
} else {
stringBuilder.append("\n").append("id: ").append(generateUUID());
}
if (namespace != null) {
stringBuilder.append("\n").append("namespace: ").append(namespace);
}
if (unblockedUserId != null) {
stringBuilder.append("\n").append("unblockedUserId: ").append(unblockedUserId);
}
return stringBuilder.toString();
}
public static Map getFieldInfo() {
Map result = new HashMap<>();
result.put("id", "id");
result.put("namespace", "namespace");
result.put("unblockedUserId", "unblockedUserId");
return result;
}
}