mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-08 12:21:08 +00:00
606 lines
20 KiB
Java
606 lines
20 KiB
Java
/*
|
|
* Tribufu API
|
|
* API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.3.0
|
|
* Contact: contact@tribufu.com
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
package com.tribufu.generated.models;
|
|
|
|
import java.util.Objects;
|
|
import com.google.gson.TypeAdapter;
|
|
import com.google.gson.annotations.JsonAdapter;
|
|
import com.google.gson.annotations.SerializedName;
|
|
import com.google.gson.stream.JsonReader;
|
|
import com.google.gson.stream.JsonWriter;
|
|
import java.io.IOException;
|
|
import java.net.URI;
|
|
import java.time.OffsetDateTime;
|
|
import java.util.Arrays;
|
|
import org.openapitools.jackson.nullable.JsonNullable;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.google.gson.GsonBuilder;
|
|
import com.google.gson.JsonArray;
|
|
import com.google.gson.JsonDeserializationContext;
|
|
import com.google.gson.JsonDeserializer;
|
|
import com.google.gson.JsonElement;
|
|
import com.google.gson.JsonObject;
|
|
import com.google.gson.JsonParseException;
|
|
import com.google.gson.TypeAdapterFactory;
|
|
import com.google.gson.reflect.TypeToken;
|
|
import com.google.gson.TypeAdapter;
|
|
import com.google.gson.stream.JsonReader;
|
|
import com.google.gson.stream.JsonWriter;
|
|
import java.io.IOException;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import com.tribufu.generated.JSON;
|
|
|
|
/**
|
|
* GameServerCluster
|
|
*/
|
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-27T09:52:38.593392400-03:00[America/Sao_Paulo]", comments = "Generator version: 7.12.0")
|
|
public class GameServerCluster {
|
|
public static final String SERIALIZED_NAME_ID = "id";
|
|
@SerializedName(SERIALIZED_NAME_ID)
|
|
@javax.annotation.Nullable
|
|
private String id;
|
|
|
|
public static final String SERIALIZED_NAME_NAME = "name";
|
|
@SerializedName(SERIALIZED_NAME_NAME)
|
|
@javax.annotation.Nullable
|
|
private String name;
|
|
|
|
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
|
|
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
|
|
@javax.annotation.Nullable
|
|
private String description;
|
|
|
|
public static final String SERIALIZED_NAME_GAME_ID = "game_id";
|
|
@SerializedName(SERIALIZED_NAME_GAME_ID)
|
|
@javax.annotation.Nullable
|
|
private String gameId;
|
|
|
|
public static final String SERIALIZED_NAME_WEBSITE_URL = "website_url";
|
|
@SerializedName(SERIALIZED_NAME_WEBSITE_URL)
|
|
@javax.annotation.Nullable
|
|
private String websiteUrl;
|
|
|
|
public static final String SERIALIZED_NAME_BANNER_URL = "banner_url";
|
|
@SerializedName(SERIALIZED_NAME_BANNER_URL)
|
|
@javax.annotation.Nullable
|
|
private URI bannerUrl;
|
|
|
|
public static final String SERIALIZED_NAME_OWNER_ID = "owner_id";
|
|
@SerializedName(SERIALIZED_NAME_OWNER_ID)
|
|
@javax.annotation.Nullable
|
|
private String ownerId;
|
|
|
|
public static final String SERIALIZED_NAME_DISCORD_SERVER_ID = "discord_server_id";
|
|
@SerializedName(SERIALIZED_NAME_DISCORD_SERVER_ID)
|
|
@javax.annotation.Nullable
|
|
private String discordServerId;
|
|
|
|
public static final String SERIALIZED_NAME_YOUTUBE_VIDEO_URL = "youtube_video_url";
|
|
@SerializedName(SERIALIZED_NAME_YOUTUBE_VIDEO_URL)
|
|
@javax.annotation.Nullable
|
|
private String youtubeVideoUrl;
|
|
|
|
public static final String SERIALIZED_NAME_TAGS = "tags";
|
|
@SerializedName(SERIALIZED_NAME_TAGS)
|
|
@javax.annotation.Nullable
|
|
private String tags;
|
|
|
|
public static final String SERIALIZED_NAME_COMMENT_COUNT = "comment_count";
|
|
@SerializedName(SERIALIZED_NAME_COMMENT_COUNT)
|
|
@javax.annotation.Nullable
|
|
private Integer commentCount;
|
|
|
|
public static final String SERIALIZED_NAME_SERVER_COUNT = "server_count";
|
|
@SerializedName(SERIALIZED_NAME_SERVER_COUNT)
|
|
@javax.annotation.Nullable
|
|
private Integer serverCount;
|
|
|
|
public static final String SERIALIZED_NAME_CREATED = "created";
|
|
@SerializedName(SERIALIZED_NAME_CREATED)
|
|
@javax.annotation.Nullable
|
|
private OffsetDateTime created;
|
|
|
|
public static final String SERIALIZED_NAME_UPDATED = "updated";
|
|
@SerializedName(SERIALIZED_NAME_UPDATED)
|
|
@javax.annotation.Nullable
|
|
private OffsetDateTime updated;
|
|
|
|
public GameServerCluster() {
|
|
}
|
|
|
|
public GameServerCluster id(@javax.annotation.Nullable String id) {
|
|
this.id = id;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get id
|
|
* @return id
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(@javax.annotation.Nullable String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
|
|
public GameServerCluster name(@javax.annotation.Nullable String name) {
|
|
this.name = name;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get name
|
|
* @return name
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(@javax.annotation.Nullable String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
|
|
public GameServerCluster description(@javax.annotation.Nullable String description) {
|
|
this.description = description;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get description
|
|
* @return description
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(@javax.annotation.Nullable String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
|
|
public GameServerCluster gameId(@javax.annotation.Nullable String gameId) {
|
|
this.gameId = gameId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get gameId
|
|
* @return gameId
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getGameId() {
|
|
return gameId;
|
|
}
|
|
|
|
public void setGameId(@javax.annotation.Nullable String gameId) {
|
|
this.gameId = gameId;
|
|
}
|
|
|
|
|
|
public GameServerCluster websiteUrl(@javax.annotation.Nullable String websiteUrl) {
|
|
this.websiteUrl = websiteUrl;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get websiteUrl
|
|
* @return websiteUrl
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getWebsiteUrl() {
|
|
return websiteUrl;
|
|
}
|
|
|
|
public void setWebsiteUrl(@javax.annotation.Nullable String websiteUrl) {
|
|
this.websiteUrl = websiteUrl;
|
|
}
|
|
|
|
|
|
public GameServerCluster bannerUrl(@javax.annotation.Nullable URI bannerUrl) {
|
|
this.bannerUrl = bannerUrl;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get bannerUrl
|
|
* @return bannerUrl
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public URI getBannerUrl() {
|
|
return bannerUrl;
|
|
}
|
|
|
|
public void setBannerUrl(@javax.annotation.Nullable URI bannerUrl) {
|
|
this.bannerUrl = bannerUrl;
|
|
}
|
|
|
|
|
|
public GameServerCluster ownerId(@javax.annotation.Nullable String ownerId) {
|
|
this.ownerId = ownerId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get ownerId
|
|
* @return ownerId
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getOwnerId() {
|
|
return ownerId;
|
|
}
|
|
|
|
public void setOwnerId(@javax.annotation.Nullable String ownerId) {
|
|
this.ownerId = ownerId;
|
|
}
|
|
|
|
|
|
public GameServerCluster discordServerId(@javax.annotation.Nullable String discordServerId) {
|
|
this.discordServerId = discordServerId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get discordServerId
|
|
* @return discordServerId
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getDiscordServerId() {
|
|
return discordServerId;
|
|
}
|
|
|
|
public void setDiscordServerId(@javax.annotation.Nullable String discordServerId) {
|
|
this.discordServerId = discordServerId;
|
|
}
|
|
|
|
|
|
public GameServerCluster youtubeVideoUrl(@javax.annotation.Nullable String youtubeVideoUrl) {
|
|
this.youtubeVideoUrl = youtubeVideoUrl;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get youtubeVideoUrl
|
|
* @return youtubeVideoUrl
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getYoutubeVideoUrl() {
|
|
return youtubeVideoUrl;
|
|
}
|
|
|
|
public void setYoutubeVideoUrl(@javax.annotation.Nullable String youtubeVideoUrl) {
|
|
this.youtubeVideoUrl = youtubeVideoUrl;
|
|
}
|
|
|
|
|
|
public GameServerCluster tags(@javax.annotation.Nullable String tags) {
|
|
this.tags = tags;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get tags
|
|
* @return tags
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public String getTags() {
|
|
return tags;
|
|
}
|
|
|
|
public void setTags(@javax.annotation.Nullable String tags) {
|
|
this.tags = tags;
|
|
}
|
|
|
|
|
|
public GameServerCluster commentCount(@javax.annotation.Nullable Integer commentCount) {
|
|
this.commentCount = commentCount;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get commentCount
|
|
* @return commentCount
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public Integer getCommentCount() {
|
|
return commentCount;
|
|
}
|
|
|
|
public void setCommentCount(@javax.annotation.Nullable Integer commentCount) {
|
|
this.commentCount = commentCount;
|
|
}
|
|
|
|
|
|
public GameServerCluster serverCount(@javax.annotation.Nullable Integer serverCount) {
|
|
this.serverCount = serverCount;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get serverCount
|
|
* @return serverCount
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public Integer getServerCount() {
|
|
return serverCount;
|
|
}
|
|
|
|
public void setServerCount(@javax.annotation.Nullable Integer serverCount) {
|
|
this.serverCount = serverCount;
|
|
}
|
|
|
|
|
|
public GameServerCluster created(@javax.annotation.Nullable OffsetDateTime created) {
|
|
this.created = created;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get created
|
|
* @return created
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public OffsetDateTime getCreated() {
|
|
return created;
|
|
}
|
|
|
|
public void setCreated(@javax.annotation.Nullable OffsetDateTime created) {
|
|
this.created = created;
|
|
}
|
|
|
|
|
|
public GameServerCluster updated(@javax.annotation.Nullable OffsetDateTime updated) {
|
|
this.updated = updated;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get updated
|
|
* @return updated
|
|
*/
|
|
@javax.annotation.Nullable
|
|
public OffsetDateTime getUpdated() {
|
|
return updated;
|
|
}
|
|
|
|
public void setUpdated(@javax.annotation.Nullable OffsetDateTime updated) {
|
|
this.updated = updated;
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
GameServerCluster gameServerCluster = (GameServerCluster) o;
|
|
return Objects.equals(this.id, gameServerCluster.id) &&
|
|
Objects.equals(this.name, gameServerCluster.name) &&
|
|
Objects.equals(this.description, gameServerCluster.description) &&
|
|
Objects.equals(this.gameId, gameServerCluster.gameId) &&
|
|
Objects.equals(this.websiteUrl, gameServerCluster.websiteUrl) &&
|
|
Objects.equals(this.bannerUrl, gameServerCluster.bannerUrl) &&
|
|
Objects.equals(this.ownerId, gameServerCluster.ownerId) &&
|
|
Objects.equals(this.discordServerId, gameServerCluster.discordServerId) &&
|
|
Objects.equals(this.youtubeVideoUrl, gameServerCluster.youtubeVideoUrl) &&
|
|
Objects.equals(this.tags, gameServerCluster.tags) &&
|
|
Objects.equals(this.commentCount, gameServerCluster.commentCount) &&
|
|
Objects.equals(this.serverCount, gameServerCluster.serverCount) &&
|
|
Objects.equals(this.created, gameServerCluster.created) &&
|
|
Objects.equals(this.updated, gameServerCluster.updated);
|
|
}
|
|
|
|
private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b) {
|
|
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(id, name, description, gameId, websiteUrl, bannerUrl, ownerId, discordServerId, youtubeVideoUrl, tags, commentCount, serverCount, created, updated);
|
|
}
|
|
|
|
private static <T> int hashCodeNullable(JsonNullable<T> a) {
|
|
if (a == null) {
|
|
return 1;
|
|
}
|
|
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class GameServerCluster {\n");
|
|
sb.append(" id: ").append(toIndentedString(id)).append("\n");
|
|
sb.append(" name: ").append(toIndentedString(name)).append("\n");
|
|
sb.append(" description: ").append(toIndentedString(description)).append("\n");
|
|
sb.append(" gameId: ").append(toIndentedString(gameId)).append("\n");
|
|
sb.append(" websiteUrl: ").append(toIndentedString(websiteUrl)).append("\n");
|
|
sb.append(" bannerUrl: ").append(toIndentedString(bannerUrl)).append("\n");
|
|
sb.append(" ownerId: ").append(toIndentedString(ownerId)).append("\n");
|
|
sb.append(" discordServerId: ").append(toIndentedString(discordServerId)).append("\n");
|
|
sb.append(" youtubeVideoUrl: ").append(toIndentedString(youtubeVideoUrl)).append("\n");
|
|
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
|
|
sb.append(" commentCount: ").append(toIndentedString(commentCount)).append("\n");
|
|
sb.append(" serverCount: ").append(toIndentedString(serverCount)).append("\n");
|
|
sb.append(" created: ").append(toIndentedString(created)).append("\n");
|
|
sb.append(" updated: ").append(toIndentedString(updated)).append("\n");
|
|
sb.append("}");
|
|
return sb.toString();
|
|
}
|
|
|
|
/**
|
|
* Convert the given object to string with each line indented by 4 spaces
|
|
* (except the first line).
|
|
*/
|
|
private String toIndentedString(Object o) {
|
|
if (o == null) {
|
|
return "null";
|
|
}
|
|
return o.toString().replace("\n", "\n ");
|
|
}
|
|
|
|
|
|
public static HashSet<String> openapiFields;
|
|
public static HashSet<String> openapiRequiredFields;
|
|
|
|
static {
|
|
// a set of all properties/fields (JSON key names)
|
|
openapiFields = new HashSet<String>();
|
|
openapiFields.add("id");
|
|
openapiFields.add("name");
|
|
openapiFields.add("description");
|
|
openapiFields.add("game_id");
|
|
openapiFields.add("website_url");
|
|
openapiFields.add("banner_url");
|
|
openapiFields.add("owner_id");
|
|
openapiFields.add("discord_server_id");
|
|
openapiFields.add("youtube_video_url");
|
|
openapiFields.add("tags");
|
|
openapiFields.add("comment_count");
|
|
openapiFields.add("server_count");
|
|
openapiFields.add("created");
|
|
openapiFields.add("updated");
|
|
|
|
// a set of required properties/fields (JSON key names)
|
|
openapiRequiredFields = new HashSet<String>();
|
|
openapiRequiredFields.add("name");
|
|
}
|
|
|
|
/**
|
|
* Validates the JSON Element and throws an exception if issues found
|
|
*
|
|
* @param jsonElement JSON Element
|
|
* @throws IOException if the JSON Element is invalid with respect to GameServerCluster
|
|
*/
|
|
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
|
|
if (jsonElement == null) {
|
|
if (!GameServerCluster.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
|
|
throw new IllegalArgumentException(String.format("The required field(s) %s in GameServerCluster is not found in the empty JSON string", GameServerCluster.openapiRequiredFields.toString()));
|
|
}
|
|
}
|
|
|
|
Set<Map.Entry<String, JsonElement>> entries = jsonElement.getAsJsonObject().entrySet();
|
|
// check to see if the JSON string contains additional fields
|
|
for (Map.Entry<String, JsonElement> entry : entries) {
|
|
if (!GameServerCluster.openapiFields.contains(entry.getKey())) {
|
|
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `GameServerCluster` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
|
|
}
|
|
}
|
|
|
|
// check to make sure all required properties/fields are present in the JSON string
|
|
for (String requiredField : GameServerCluster.openapiRequiredFields) {
|
|
if (jsonElement.getAsJsonObject().get(requiredField) == null) {
|
|
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
|
|
}
|
|
}
|
|
JsonObject jsonObj = jsonElement.getAsJsonObject();
|
|
if ((jsonObj.get("id") != null && !jsonObj.get("id").isJsonNull()) && !jsonObj.get("id").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("id").toString()));
|
|
}
|
|
if ((jsonObj.get("name") != null && !jsonObj.get("name").isJsonNull()) && !jsonObj.get("name").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("name").toString()));
|
|
}
|
|
if ((jsonObj.get("description") != null && !jsonObj.get("description").isJsonNull()) && !jsonObj.get("description").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `description` to be a primitive type in the JSON string but got `%s`", jsonObj.get("description").toString()));
|
|
}
|
|
if ((jsonObj.get("game_id") != null && !jsonObj.get("game_id").isJsonNull()) && !jsonObj.get("game_id").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `game_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("game_id").toString()));
|
|
}
|
|
if ((jsonObj.get("website_url") != null && !jsonObj.get("website_url").isJsonNull()) && !jsonObj.get("website_url").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `website_url` to be a primitive type in the JSON string but got `%s`", jsonObj.get("website_url").toString()));
|
|
}
|
|
if ((jsonObj.get("banner_url") != null && !jsonObj.get("banner_url").isJsonNull()) && !jsonObj.get("banner_url").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `banner_url` to be a primitive type in the JSON string but got `%s`", jsonObj.get("banner_url").toString()));
|
|
}
|
|
if ((jsonObj.get("owner_id") != null && !jsonObj.get("owner_id").isJsonNull()) && !jsonObj.get("owner_id").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `owner_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("owner_id").toString()));
|
|
}
|
|
if ((jsonObj.get("discord_server_id") != null && !jsonObj.get("discord_server_id").isJsonNull()) && !jsonObj.get("discord_server_id").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `discord_server_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("discord_server_id").toString()));
|
|
}
|
|
if ((jsonObj.get("youtube_video_url") != null && !jsonObj.get("youtube_video_url").isJsonNull()) && !jsonObj.get("youtube_video_url").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `youtube_video_url` to be a primitive type in the JSON string but got `%s`", jsonObj.get("youtube_video_url").toString()));
|
|
}
|
|
if ((jsonObj.get("tags") != null && !jsonObj.get("tags").isJsonNull()) && !jsonObj.get("tags").isJsonPrimitive()) {
|
|
throw new IllegalArgumentException(String.format("Expected the field `tags` to be a primitive type in the JSON string but got `%s`", jsonObj.get("tags").toString()));
|
|
}
|
|
}
|
|
|
|
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
|
|
@SuppressWarnings("unchecked")
|
|
@Override
|
|
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
|
|
if (!GameServerCluster.class.isAssignableFrom(type.getRawType())) {
|
|
return null; // this class only serializes 'GameServerCluster' and its subtypes
|
|
}
|
|
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
|
|
final TypeAdapter<GameServerCluster> thisAdapter
|
|
= gson.getDelegateAdapter(this, TypeToken.get(GameServerCluster.class));
|
|
|
|
return (TypeAdapter<T>) new TypeAdapter<GameServerCluster>() {
|
|
@Override
|
|
public void write(JsonWriter out, GameServerCluster value) throws IOException {
|
|
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
|
|
elementAdapter.write(out, obj);
|
|
}
|
|
|
|
@Override
|
|
public GameServerCluster read(JsonReader in) throws IOException {
|
|
JsonElement jsonElement = elementAdapter.read(in);
|
|
validateJsonElement(jsonElement);
|
|
return thisAdapter.fromJsonTree(jsonElement);
|
|
}
|
|
|
|
}.nullSafe();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create an instance of GameServerCluster given an JSON string
|
|
*
|
|
* @param jsonString JSON string
|
|
* @return An instance of GameServerCluster
|
|
* @throws IOException if the JSON string is invalid with respect to GameServerCluster
|
|
*/
|
|
public static GameServerCluster fromJson(String jsonString) throws IOException {
|
|
return JSON.getGson().fromJson(jsonString, GameServerCluster.class);
|
|
}
|
|
|
|
/**
|
|
* Convert an instance of GameServerCluster to an JSON string
|
|
*
|
|
* @return JSON string
|
|
*/
|
|
public String toJson() {
|
|
return JSON.getGson().toJson(this);
|
|
}
|
|
}
|
|
|