net.accelbyte.sdk.api.platform.models.AvailablePredicate Maven / Gradle / Ivy
/*
* 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.platform.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 AvailablePredicate extends Model {
@JsonProperty("availableComparisons")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List availableComparisons;
@JsonProperty("predicateType")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String predicateType;
@JsonProperty("showAnyOf")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Boolean showAnyOf;
@JsonProperty("valueType")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String valueType;
@JsonIgnore
public String getPredicateType() {
return this.predicateType;
}
@JsonIgnore
public PredicateType getPredicateTypeAsEnum() {
return PredicateType.valueOf(this.predicateType);
}
@JsonIgnore
public void setPredicateType(final String predicateType) {
this.predicateType = predicateType;
}
@JsonIgnore
public void setPredicateTypeFromEnum(final PredicateType predicateType) {
this.predicateType = predicateType.toString();
}
@JsonIgnore
public String getValueType() {
return this.valueType;
}
@JsonIgnore
public ValueType getValueTypeAsEnum() {
return ValueType.valueOf(this.valueType);
}
@JsonIgnore
public void setValueType(final String valueType) {
this.valueType = valueType;
}
@JsonIgnore
public void setValueTypeFromEnum(final ValueType valueType) {
this.valueType = valueType.toString();
}
@JsonIgnore
public AvailablePredicate 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>() {});
}
public enum PredicateType {
EntitlementPredicate("EntitlementPredicate"),
SeasonPassPredicate("SeasonPassPredicate"),
SeasonTierPredicate("SeasonTierPredicate");
private String value;
PredicateType(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
}
public enum ValueType {
List("List"),
Number("Number"),
String("String");
private String value;
ValueType(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
}
public static class AvailablePredicateBuilder {
private String predicateType;
private String valueType;
public AvailablePredicateBuilder predicateType(final String predicateType) {
this.predicateType = predicateType;
return this;
}
public AvailablePredicateBuilder predicateTypeFromEnum(final PredicateType predicateType) {
this.predicateType = predicateType.toString();
return this;
}
public AvailablePredicateBuilder valueType(final String valueType) {
this.valueType = valueType;
return this;
}
public AvailablePredicateBuilder valueTypeFromEnum(final ValueType valueType) {
this.valueType = valueType.toString();
return this;
}
}
}