All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.accelbyte.sdk.api.lobby.ws_models.SignalingP2PNotif Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
/*
 * 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