net.accelbyte.sdk.api.sessionhistory.models.ModelsGameServer Maven / Gradle / Ivy
/*
* 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.sessionhistory.models;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.*;
import lombok.*;
import net.accelbyte.sdk.core.Model;
@JsonIgnoreProperties(ignoreUnknown = true)
@Builder
@Getter
@Setter
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@AllArgsConstructor(onConstructor = @__(@Deprecated))
@NoArgsConstructor
public class ModelsGameServer extends Model {
@JsonProperty("alternate_ips")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List alternateIps;
@JsonProperty("custom_attribute")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String customAttribute;
@JsonProperty("deployment")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String deployment;
@JsonProperty("game_version")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String gameVersion;
@JsonProperty("image_version")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String imageVersion;
@JsonProperty("ip")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String ip;
@JsonProperty("is_override_game_version")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Boolean isOverrideGameVersion;
@JsonProperty("last_update")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String lastUpdate;
@JsonProperty("namespace")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String namespace;
@JsonProperty("pod_name")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String podName;
@JsonProperty("port")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Integer port;
@JsonProperty("ports")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Map ports;
@JsonProperty("protocol")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String protocol;
@JsonProperty("provider")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String provider;
@JsonProperty("region")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String region;
@JsonProperty("session_id")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String sessionId;
@JsonProperty("status")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String status;
@JsonIgnore
public ModelsGameServer createFromJson(String json) throws JsonProcessingException {
return new ObjectMapper().readValue(json, this.getClass());
}
@JsonIgnore
public List createFromJsonList(String json) throws JsonProcessingException {
return new ObjectMapper().readValue(json, new TypeReference>() {});
}
}