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