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