net.accelbyte.sdk.api.lobby.ws_models.PartyRejectRequest 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 PartyRejectRequest {
private String id;
private String invitationToken;
private String partyId;
private PartyRejectRequest() {}
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public PartyRejectRequest(String id, String invitationToken, String partyId) {
this.id = id;
this.invitationToken = invitationToken;
this.partyId = partyId;
}
public static String getType() {
return "partyRejectRequest";
}
public static PartyRejectRequest createFromWSM(String message) {
PartyRejectRequest result = new PartyRejectRequest();
Map response = parseWSM(message);
result.id = response.get("id") != null ? response.get("id") : 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(PartyRejectRequest.getType());
if (id != null) {
stringBuilder.append("\n").append("id: ").append(id);
} else {
stringBuilder.append("\n").append("id: ").append(generateUUID());
}
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("id", "id");
result.put("invitationToken", "invitationToken");
result.put("partyId", "partyId");
return result;
}
}