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