/* Options: Date: 2024-05-14 09:45:00 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HelloWithEnumList.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class HelloWithEnumList { public ArrayList enumProp = null; public ArrayList enumWithValues = null; public ArrayList nullableEnumProp = null; public ArrayList enumFlags = null; public ArrayList enumStyle = null; public ArrayList getEnumProp() { return enumProp; } public HelloWithEnumList setEnumProp(ArrayList value) { this.enumProp = value; return this; } public ArrayList getEnumWithValues() { return enumWithValues; } public HelloWithEnumList setEnumWithValues(ArrayList value) { this.enumWithValues = value; return this; } public ArrayList getNullableEnumProp() { return nullableEnumProp; } public HelloWithEnumList setNullableEnumProp(ArrayList value) { this.nullableEnumProp = value; return this; } public ArrayList getEnumFlags() { return enumFlags; } public HelloWithEnumList setEnumFlags(ArrayList value) { this.enumFlags = value; return this; } public ArrayList getEnumStyle() { return enumStyle; } public HelloWithEnumList setEnumStyle(ArrayList value) { this.enumStyle = value; return this; } } public static enum EnumType { Value1, Value2, Value3; } public static enum EnumWithValues { None, Value1, Value2; } @Flags() public static enum EnumFlags { @SerializedName("0") Value0(0), @SerializedName("1") Value1(1), @SerializedName("2") Value2(2), @SerializedName("4") Value3(4), @SerializedName("7") Value123(7); private final int value; EnumFlags(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum EnumStyle { Lower, Upper, PascalCase, CamelCase, CamelUPPER, PascalUPPER; } }