com.unblu.webapi.model.v3.BodyElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of models-v3 Show documentation
Show all versions of models-v3 Show documentation
Java classes corresponding to the JSON bodies
package com.unblu.webapi.model.v3;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* If body consist of only one complex type, it can be directly this implementation of `IBody`. Otherwise this elements are wrapped by a
* `ArrayBody`
*/
@ApiModel(description = "If body consist of only one complex type, it can be directly this implementation of `IBody`. Otherwise this elements are wrapped by a `ArrayBody`")
@JsonPropertyOrder({
BodyElement.JSON_PROPERTY_$_TYPE,
BodyElement.JSON_PROPERTY_TYPE_NAME,
BodyElement.JSON_PROPERTY_IS_ARRAY,
BodyElement.JSON_PROPERTY_NUM_ARRAY_DIM,
BodyElement.JSON_PROPERTY_IS_ENUM,
BodyElement.JSON_PROPERTY_TYPE_ARGS,
BodyElement.JSON_PROPERTY_NAME,
BodyElement.JSON_PROPERTY_DOCUMENTATION,
})
@JsonAutoDetect(creatorVisibility = Visibility.NONE, fieldVisibility = Visibility.NONE, getterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
public class BodyElement implements IBody {
/**
* Gets or Sets $type
*/
public enum TypeEnum {
BODYELEMENT("BodyElement");
private String value;
TypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static TypeEnum fromValue(String value) {
for (TypeEnum b : TypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return TypeEnum.BODYELEMENT;
}
}
public static final String JSON_PROPERTY_$_TYPE = "$_type";
@JsonProperty(JSON_PROPERTY_$_TYPE)
private TypeEnum $type = TypeEnum.BODYELEMENT;
public static final String JSON_PROPERTY_TYPE_NAME = "typeName";
@JsonProperty(JSON_PROPERTY_TYPE_NAME)
private String typeName;
public static final String JSON_PROPERTY_IS_ARRAY = "isArray";
@JsonProperty(JSON_PROPERTY_IS_ARRAY)
private Boolean isArray;
public static final String JSON_PROPERTY_NUM_ARRAY_DIM = "numArrayDim";
@JsonProperty(JSON_PROPERTY_NUM_ARRAY_DIM)
private Integer numArrayDim;
public static final String JSON_PROPERTY_IS_ENUM = "isEnum";
@JsonProperty(JSON_PROPERTY_IS_ENUM)
private Boolean isEnum;
public static final String JSON_PROPERTY_TYPE_ARGS = "typeArgs";
@JsonProperty(JSON_PROPERTY_TYPE_ARGS)
private List typeArgs = null;
public static final String JSON_PROPERTY_NAME = "name";
@JsonProperty(JSON_PROPERTY_NAME)
private String name;
public static final String JSON_PROPERTY_DOCUMENTATION = "documentation";
@JsonProperty(JSON_PROPERTY_DOCUMENTATION)
private String documentation;
public BodyElement $type(TypeEnum $type) {
this.$type = $type;
return this;
}
/**
* Get $type
*
* @return $type
**/
@ApiModelProperty(value = "")
public TypeEnum get$Type() {
return $type;
}
public void set$Type(TypeEnum $type) {
this.$type = $type;
}
public BodyElement typeName(String typeName) {
this.typeName = typeName;
return this;
}
/**
* Name of the type
*
* @return typeName
**/
@ApiModelProperty(value = "Name of the type")
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public BodyElement isArray(Boolean isArray) {
this.isArray = isArray;
return this;
}
/**
* True if the type is an array
*
* @return isArray
**/
@ApiModelProperty(value = "True if the type is an array")
public Boolean isIsArray() {
return isArray;
}
public void setIsArray(Boolean isArray) {
this.isArray = isArray;
}
public BodyElement numArrayDim(Integer numArrayDim) {
this.numArrayDim = numArrayDim;
return this;
}
/**
* 0 if type is not an array. Otherwise the property defines the number of dimension of the property. E.g. with 2 a string type would be a 2 dim string array:
* string[][]
*
* @return numArrayDim
**/
@ApiModelProperty(value = "0 if type is not an array. Otherwise the property defines the number of dimension of the property. E.g. with 2 a string type would be a 2 dim string array: string[][]")
public Integer getNumArrayDim() {
return numArrayDim;
}
public void setNumArrayDim(Integer numArrayDim) {
this.numArrayDim = numArrayDim;
}
public BodyElement isEnum(Boolean isEnum) {
this.isEnum = isEnum;
return this;
}
/**
* True if the type is an enum
*
* @return isEnum
**/
@ApiModelProperty(value = "True if the type is an enum")
public Boolean isIsEnum() {
return isEnum;
}
public void setIsEnum(Boolean isEnum) {
this.isEnum = isEnum;
}
public BodyElement typeArgs(List typeArgs) {
this.typeArgs = typeArgs;
return this;
}
public BodyElement addTypeArgsItem(ServiceTypeBinding typeArgsItem) {
if (this.typeArgs == null) {
this.typeArgs = new ArrayList<>();
}
this.typeArgs.add(typeArgsItem);
return this;
}
/**
* Type arguments for generic types. E.g. a list has generic types: list<string> generic type would be string
*
* @return typeArgs
**/
@ApiModelProperty(value = "Type arguments for generic types. E.g. a list has generic types: list<string> generic type would be string")
public List getTypeArgs() {
return typeArgs;
}
public void setTypeArgs(List typeArgs) {
this.typeArgs = typeArgs;
}
public BodyElement name(String name) {
this.name = name;
return this;
}
/**
* Get name
*
* @return name
**/
@ApiModelProperty(value = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BodyElement documentation(String documentation) {
this.documentation = documentation;
return this;
}
/**
* Get documentation
*
* @return documentation
**/
@ApiModelProperty(value = "")
public String getDocumentation() {
return documentation;
}
public void setDocumentation(String documentation) {
this.documentation = documentation;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BodyElement bodyElement = (BodyElement) o;
return Objects.equals(this.$type, bodyElement.$type) &&
Objects.equals(this.typeName, bodyElement.typeName) &&
Objects.equals(this.isArray, bodyElement.isArray) &&
Objects.equals(this.numArrayDim, bodyElement.numArrayDim) &&
Objects.equals(this.isEnum, bodyElement.isEnum) &&
Objects.equals(this.typeArgs, bodyElement.typeArgs) &&
Objects.equals(this.name, bodyElement.name) &&
Objects.equals(this.documentation, bodyElement.documentation);
}
@Override
public int hashCode() {
return Objects.hash($type, typeName, isArray, numArrayDim, isEnum, typeArgs, name, documentation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BodyElement {\n");
sb.append(" $type: ").append(toIndentedString($type)).append("\n");
sb.append(" typeName: ").append(toIndentedString(typeName)).append("\n");
sb.append(" isArray: ").append(toIndentedString(isArray)).append("\n");
sb.append(" numArrayDim: ").append(toIndentedString(numArrayDim)).append("\n");
sb.append(" isEnum: ").append(toIndentedString(isEnum)).append("\n");
sb.append(" typeArgs: ").append(toIndentedString(typeArgs)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" documentation: ").append(toIndentedString(documentation)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}