net.accelbyte.sdk.api.lobby.ws_models.PersonalChatNotif Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of module-lobby Show documentation
Show all versions of module-lobby Show documentation
AccelByte Gaming Services Java Extend SDK generated from OpenAPI specs
/*
* Copyright (c) 2024 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 PersonalChatNotif {
private String from;
private String id;
private String payload;
private String receivedAt;
private String to;
private PersonalChatNotif() {}
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public PersonalChatNotif(String from, String id, String payload, String receivedAt, String to) {
this.from = from;
this.id = id;
this.payload = payload;
this.receivedAt = receivedAt;
this.to = to;
}
public static String getType() {
return "personalChatNotif";
}
public static PersonalChatNotif createFromWSM(String message) {
PersonalChatNotif result = new PersonalChatNotif();
Map response = parseWSM(message);
result.from = response.get("from") != null ? response.get("from") : null;
result.id = response.get("id") != null ? response.get("id") : null;
result.payload = response.get("payload") != null ? response.get("payload") : null;
result.receivedAt = response.get("receivedAt") != null ? response.get("receivedAt") : null;
result.to = response.get("to") != null ? response.get("to") : null;
return result;
}
public String toWSM() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("type: ").append(PersonalChatNotif.getType());
if (from != null) {
stringBuilder.append("\n").append("from: ").append(from);
}
if (id != null) {
stringBuilder.append("\n").append("id: ").append(id);
} else {
stringBuilder.append("\n").append("id: ").append(generateUUID());
}
if (payload != null) {
stringBuilder.append("\n").append("payload: ").append(payload);
}
if (receivedAt != null) {
stringBuilder.append("\n").append("receivedAt: ").append(receivedAt);
}
if (to != null) {
stringBuilder.append("\n").append("to: ").append(to);
}
return stringBuilder.toString();
}
public static Map getFieldInfo() {
Map result = new HashMap<>();
result.put("from", "from");
result.put("id", "id");
result.put("payload", "payload");
result.put("receivedAt", "receivedAt");
result.put("to", "to");
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy