net.accelbyte.sdk.api.lobby.ws_models.PartyJoinNotif 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.parseWSM;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class PartyJoinNotif {
private String userId;
private PartyJoinNotif() {}
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public PartyJoinNotif(String userId) {
this.userId = userId;
}
public static String getType() {
return "partyJoinNotif";
}
public static PartyJoinNotif createFromWSM(String message) {
PartyJoinNotif result = new PartyJoinNotif();
Map response = parseWSM(message);
result.userId = response.get("userId") != null ? response.get("userId") : null;
return result;
}
public String toWSM() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("type: ").append(PartyJoinNotif.getType());
if (userId != null) {
stringBuilder.append("\n").append("userId: ").append(userId);
}
return stringBuilder.toString();
}
public static Map getFieldInfo() {
Map result = new HashMap<>();
result.put("userId", "userId");
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy