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

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

The newest version!
/*
 * 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 java.util.*;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Heartbeat {

  public Heartbeat() {}

  public static String getType() {
    return "heartbeat";
  }

  public static Heartbeat createFromWSM(String message) {
    Heartbeat result = new Heartbeat();
    return result;
  }

  public String toWSM() {
    StringBuilder stringBuilder = new StringBuilder();
    stringBuilder.append("type: ").append(Heartbeat.getType());
    return stringBuilder.toString();
  }

  public static Map getFieldInfo() {
    Map result = new HashMap<>();
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy