/* Options: Date: 2024-06-17 06:58:51 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LicenseTypeQuery.* //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 { @Route(Path="/licenses/types/", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class LicenseTypeQuery extends QueryDb implements IReturn> { /** * If you want to only select Extra license options */ @ApiMember(DataType="boolean", Description="If you want to only select Extra license options", ParameterType="query") public Boolean ExtraLicenseOption = null; /** * What country you want to list the prices for */ @ApiMember(DataType="string", Description="What country you want to list the prices for") public String CountryId = null; /** * If you want to include the connected license items */ @ApiMember(DataType="boolean", Description="If you want to include the connected license items", ParameterType="query") public Boolean IncludeLicenseItems = null; /** * If you want to include the connected licens prices */ @ApiMember(DataType="boolean", Description="If you want to include the connected licens prices", ParameterType="query") public Boolean IncludeLicensePrices = null; public ResponseStatus ResponseStatus = null; public Boolean isExtraLicenseOption() { return ExtraLicenseOption; } public LicenseTypeQuery setExtraLicenseOption(Boolean value) { this.ExtraLicenseOption = value; return this; } public String getCountryId() { return CountryId; } public LicenseTypeQuery setCountryId(String value) { this.CountryId = value; return this; } public Boolean isIncludeLicenseItems() { return IncludeLicenseItems; } public LicenseTypeQuery setIncludeLicenseItems(Boolean value) { this.IncludeLicenseItems = value; return this; } public Boolean isIncludeLicensePrices() { return IncludeLicensePrices; } public LicenseTypeQuery setIncludeLicensePrices(Boolean value) { this.IncludeLicensePrices = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public LicenseTypeQuery setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @DataContract public static class QueryResponse { @DataMember(Order=1) public Integer Offset = null; @DataMember(Order=2) public Integer Total = null; @DataMember(Order=3) public ArrayList Results = null; @DataMember(Order=4) public HashMap Meta = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Integer getOffset() { return Offset; } public QueryResponse setOffset(Integer value) { this.Offset = value; return this; } public Integer getTotal() { return Total; } public QueryResponse setTotal(Integer value) { this.Total = value; return this; } public ArrayList getResults() { return Results; } public QueryResponse setResults(ArrayList value) { this.Results = value; return this; } public HashMap getMeta() { return Meta; } public QueryResponse setMeta(HashMap value) { this.Meta = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public QueryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class QueryDb extends QueryBase { } public static class Country extends BaseModel { @References(Currency.class) public String CurrencyId = null; public Currency CurrencyInfo = null; @Required() public String Name = null; public String Culture = null; public String TimeZone = null; public Date ModifiedDate = null; @Required() public String Id = null; public String getCurrencyId() { return CurrencyId; } public Country setCurrencyId(String value) { this.CurrencyId = value; return this; } public Currency getCurrencyInfo() { return CurrencyInfo; } public Country setCurrencyInfo(Currency value) { this.CurrencyInfo = value; return this; } public String getName() { return Name; } public Country setName(String value) { this.Name = value; return this; } public String getCulture() { return Culture; } public Country setCulture(String value) { this.Culture = value; return this; } public String getTimeZone() { return TimeZone; } public Country setTimeZone(String value) { this.TimeZone = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public Country setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public String getId() { return Id; } public Country setId(String value) { this.Id = value; return this; } } public static class Currency extends BaseModel { @Required() public String Name = null; @Required() public String CurrencySign = null; @Required() public Boolean Active = null; public Date ModifiedDate = null; @Required() public String Id = null; public String getName() { return Name; } public Currency setName(String value) { this.Name = value; return this; } public String getCurrencySign() { return CurrencySign; } public Currency setCurrencySign(String value) { this.CurrencySign = value; return this; } public Boolean isActive() { return Active; } public Currency setActive(Boolean value) { this.Active = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public Currency setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public String getId() { return Id; } public Currency setId(String value) { this.Id = value; return this; } } public static class LicenseType extends BaseModel { @Ignore() public IList LicenseItems = null; @Ignore() public IList Prices = null; @Ignore() public Integer PeriodOfNoticeDays = null; @Ignore() public LicenseType NextLicenseOption = null; @Required() public String Name = null; @Required() public String Description = null; @Required() public Boolean ExtraLicenseOption = null; public Date ModifiedDate = null; public Integer Id = null; public IList getLicenseItems() { return LicenseItems; } public LicenseType setLicenseItems(IList value) { this.LicenseItems = value; return this; } public IList getPrices() { return Prices; } public LicenseType setPrices(IList value) { this.Prices = value; return this; } public Integer getPeriodOfNoticeDays() { return PeriodOfNoticeDays; } public LicenseType setPeriodOfNoticeDays(Integer value) { this.PeriodOfNoticeDays = value; return this; } public LicenseType getNextLicenseOption() { return NextLicenseOption; } public LicenseType setNextLicenseOption(LicenseType value) { this.NextLicenseOption = value; return this; } public String getName() { return Name; } public LicenseType setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public LicenseType setDescription(String value) { this.Description = value; return this; } public Boolean isExtraLicenseOption() { return ExtraLicenseOption; } public LicenseType setExtraLicenseOption(Boolean value) { this.ExtraLicenseOption = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public LicenseType setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public Integer getId() { return Id; } public LicenseType setId(Integer value) { this.Id = value; return this; } } public static class LicenseInformationQueryResponse { public String Name = null; public String Description = null; public Uri Url = null; public Boolean FreeEdition = null; public Boolean StartEdition = null; public Boolean ProEdition = null; public Boolean SmartEdition = null; public Boolean EnterpriseEdition = null; public String FreeEditionValue = null; public String StartEditionValue = null; public String ProEditionValue = null; public String SmartEditionValue = null; public String EnterpriseEditionValue = null; public Integer LicenseInformationTypeId = null; public String getName() { return Name; } public LicenseInformationQueryResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public LicenseInformationQueryResponse setDescription(String value) { this.Description = value; return this; } public Uri getUrl() { return Url; } public LicenseInformationQueryResponse setUrl(Uri value) { this.Url = value; return this; } public Boolean isFreeEdition() { return FreeEdition; } public LicenseInformationQueryResponse setFreeEdition(Boolean value) { this.FreeEdition = value; return this; } public Boolean isStartEdition() { return StartEdition; } public LicenseInformationQueryResponse setStartEdition(Boolean value) { this.StartEdition = value; return this; } public Boolean isProEdition() { return ProEdition; } public LicenseInformationQueryResponse setProEdition(Boolean value) { this.ProEdition = value; return this; } public Boolean isSmartEdition() { return SmartEdition; } public LicenseInformationQueryResponse setSmartEdition(Boolean value) { this.SmartEdition = value; return this; } public Boolean isEnterpriseEdition() { return EnterpriseEdition; } public LicenseInformationQueryResponse setEnterpriseEdition(Boolean value) { this.EnterpriseEdition = value; return this; } public String getFreeEditionValue() { return FreeEditionValue; } public LicenseInformationQueryResponse setFreeEditionValue(String value) { this.FreeEditionValue = value; return this; } public String getStartEditionValue() { return StartEditionValue; } public LicenseInformationQueryResponse setStartEditionValue(String value) { this.StartEditionValue = value; return this; } public String getProEditionValue() { return ProEditionValue; } public LicenseInformationQueryResponse setProEditionValue(String value) { this.ProEditionValue = value; return this; } public String getSmartEditionValue() { return SmartEditionValue; } public LicenseInformationQueryResponse setSmartEditionValue(String value) { this.SmartEditionValue = value; return this; } public String getEnterpriseEditionValue() { return EnterpriseEditionValue; } public LicenseInformationQueryResponse setEnterpriseEditionValue(String value) { this.EnterpriseEditionValue = value; return this; } public Integer getLicenseInformationTypeId() { return LicenseInformationTypeId; } public LicenseInformationQueryResponse setLicenseInformationTypeId(Integer value) { this.LicenseInformationTypeId = value; return this; } } @DataContract public static class QueryBase { /** * Skip over a given number of elements in a sequence and then return the remainder. Use this when you need paging.

Example:
?skip=10&orderBy=Id */ @DataMember(Order=1) public Integer Skip = null; /** * Return a given number of elements in a sequence and then skip over the remainder. Use this when you need paging.

Example:
?take=20 */ @DataMember(Order=2) public Integer Take = null; /** * Comma separated list of fields to order by. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderBy=Id,-Age,FirstName */ @DataMember(Order=3) public String OrderBy = null; /** * Comma separated list of fields to order by in descending order. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderByDesc=Id,-Age,FirstName */ @DataMember(Order=4) public String OrderByDesc = null; /** * Include any of the aggregates AVG, COUNT, FIRST, LAST, MAX, MIN, SUM in your result set. The results will be returned in the meta field.

Example:
?include=COUNT(*) as Total

or multiple fields with
?include=Count(*) Total, Min(Age), AVG(Age) AverageAge

or unique with
?include=COUNT(DISTINCT LivingStatus) as UniqueStatus */ @DataMember(Order=5) public String Include = null; @DataMember(Order=6) public String Fields = null; @DataMember(Order=7) public HashMap Meta = null; public Integer getSkip() { return Skip; } public QueryBase setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public QueryBase setTake(Integer value) { this.Take = value; return this; } public String getOrderBy() { return OrderBy; } public QueryBase setOrderBy(String value) { this.OrderBy = value; return this; } public String getOrderByDesc() { return OrderByDesc; } public QueryBase setOrderByDesc(String value) { this.OrderByDesc = value; return this; } public String getInclude() { return Include; } public QueryBase setInclude(String value) { this.Include = value; return this; } public String getFields() { return Fields; } public QueryBase setFields(String value) { this.Fields = value; return this; } public HashMap getMeta() { return Meta; } public QueryBase setMeta(HashMap value) { this.Meta = value; return this; } } public static class BaseModel { } public static class LicensePrice extends BaseModel { @Ignore() public Country Country = null; @Ignore() public Boolean MonthlyPayment = null; @Required() public Integer LicenseTypeId = null; @Required() public String CountryId = null; @Required() public Integer Price = null; public Date ModifiedDate = null; public Country getCountry() { return Country; } public LicensePrice setCountry(Country value) { this.Country = value; return this; } public Boolean isMonthlyPayment() { return MonthlyPayment; } public LicensePrice setMonthlyPayment(Boolean value) { this.MonthlyPayment = value; return this; } public Integer getLicenseTypeId() { return LicenseTypeId; } public LicensePrice setLicenseTypeId(Integer value) { this.LicenseTypeId = value; return this; } public String getCountryId() { return CountryId; } public LicensePrice setCountryId(String value) { this.CountryId = value; return this; } public Integer getPrice() { return Price; } public LicensePrice setPrice(Integer value) { this.Price = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public LicensePrice setModifiedDate(Date value) { this.ModifiedDate = value; return this; } } public static class LicenseTypeItem extends BaseModel { @Ignore() public String Name = null; @Required() public Integer LicenseTypesId = null; @Required() public Integer LicenseItemsId = null; @Required() public Integer NumberOfItems = null; public Integer Id = null; public Date ModifiedDate = null; public String getName() { return Name; } public LicenseTypeItem setName(String value) { this.Name = value; return this; } public Integer getLicenseTypesId() { return LicenseTypesId; } public LicenseTypeItem setLicenseTypesId(Integer value) { this.LicenseTypesId = value; return this; } public Integer getLicenseItemsId() { return LicenseItemsId; } public LicenseTypeItem setLicenseItemsId(Integer value) { this.LicenseItemsId = value; return this; } public Integer getNumberOfItems() { return NumberOfItems; } public LicenseTypeItem setNumberOfItems(Integer value) { this.NumberOfItems = value; return this; } public Integer getId() { return Id; } public LicenseTypeItem setId(Integer value) { this.Id = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public LicenseTypeItem setModifiedDate(Date value) { this.ModifiedDate = value; return this; } } public static enum Currency { Sek(1), Eur(2); private final int value; Currency(final int intValue) { value = intValue; } public int getValue() { return value; } } }