![JAR search and dependency download from the Maven repository](/logo.png)
net.accelbyte.sdk.api.lobby.ws_models.GetSessionAttributeResponse 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 GetSessionAttributeResponse {
private Integer code;
private String id;
private String value;
private GetSessionAttributeResponse() {}
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public GetSessionAttributeResponse(Integer code, String id, String value) {
this.code = code;
this.id = id;
this.value = value;
}
public static String getType() {
return "getSessionAttributeResponse";
}
public static GetSessionAttributeResponse createFromWSM(String message) {
GetSessionAttributeResponse result = new GetSessionAttributeResponse();
Map response = parseWSM(message);
result.code = response.get("code") != null ? Integer.valueOf(response.get("code")) : null;
result.id = response.get("id") != null ? response.get("id") : null;
result.value = response.get("value") != null ? response.get("value") : null;
return result;
}
public String toWSM() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("type: ").append(GetSessionAttributeResponse.getType());
if (code != null) {
stringBuilder.append("\n").append("code: ").append(code);
}
if (id != null) {
stringBuilder.append("\n").append("id: ").append(id);
} else {
stringBuilder.append("\n").append("id: ").append(generateUUID());
}
if (value != null) {
stringBuilder.append("\n").append("value: ").append(value);
}
return stringBuilder.toString();
}
public static Map getFieldInfo() {
Map result = new HashMap<>();
result.put("code", "code");
result.put("id", "id");
result.put("value", "value");
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy