/* Options: Date: 2024-06-17 08:22:18 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LicenseTypeQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class BaseModel implements IConvertible { BaseModel(); BaseModel.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "BaseModel"; TypeContext? context = _ctx; } enum Currency { SEK, EUR, } class Country extends BaseModel implements IConvertible { // @References(typeof(Currency)) String? CurrencyId; Currency? CurrencyInfo; // @Required() String? Name; String? Culture; String? TimeZone; DateTime? ModifiedDate; // @Required() String? Id; Country({this.CurrencyId,this.CurrencyInfo,this.Name,this.Culture,this.TimeZone,this.ModifiedDate,this.Id}); Country.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CurrencyId = json['CurrencyId']; CurrencyInfo = JsonConverters.fromJson(json['CurrencyInfo'],'Currency',context!); Name = json['Name']; Culture = json['Culture']; TimeZone = json['TimeZone']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'CurrencyId': CurrencyId, 'CurrencyInfo': JsonConverters.toJson(CurrencyInfo,'Currency',context!), 'Name': Name, 'Culture': Culture, 'TimeZone': TimeZone, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'Id': Id }); getTypeName() => "Country"; TypeContext? context = _ctx; } class Currency extends BaseModel implements IConvertible { // @Required() String? Name; // @Required() String? CurrencySign; // @Required() bool? Active; DateTime? ModifiedDate; // @Required() String? Id; Currency({this.Name,this.CurrencySign,this.Active,this.ModifiedDate,this.Id}); Currency.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Name = json['Name']; CurrencySign = json['CurrencySign']; Active = json['Active']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'Name': Name, 'CurrencySign': CurrencySign, 'Active': Active, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'Id': Id }); getTypeName() => "Currency"; TypeContext? context = _ctx; } class LicenseTypeItem extends BaseModel implements IConvertible { // @Ignore() String? Name; // @Required() int? LicenseTypesId; // @Required() int? LicenseItemsId; // @Required() int? NumberOfItems; int? Id; DateTime? ModifiedDate; LicenseTypeItem({this.Name,this.LicenseTypesId,this.LicenseItemsId,this.NumberOfItems,this.Id,this.ModifiedDate}); LicenseTypeItem.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Name = json['Name']; LicenseTypesId = json['LicenseTypesId']; LicenseItemsId = json['LicenseItemsId']; NumberOfItems = json['NumberOfItems']; Id = json['Id']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Name': Name, 'LicenseTypesId': LicenseTypesId, 'LicenseItemsId': LicenseItemsId, 'NumberOfItems': NumberOfItems, 'Id': Id, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "LicenseTypeItem"; TypeContext? context = _ctx; } class LicensePrice extends BaseModel implements IConvertible { // @Ignore() Country? Country; // @Ignore() bool? MonthlyPayment; // @Required() int? LicenseTypeId; // @Required() String? CountryId; // @Required() int? Price; DateTime? ModifiedDate; LicensePrice({this.Country,this.MonthlyPayment,this.LicenseTypeId,this.CountryId,this.Price,this.ModifiedDate}); LicensePrice.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Country = JsonConverters.fromJson(json['Country'],'Country',context!); MonthlyPayment = json['MonthlyPayment']; LicenseTypeId = json['LicenseTypeId']; CountryId = json['CountryId']; Price = json['Price']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Country': JsonConverters.toJson(Country,'Country',context!), 'MonthlyPayment': MonthlyPayment, 'LicenseTypeId': LicenseTypeId, 'CountryId': CountryId, 'Price': Price, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "LicensePrice"; TypeContext? context = _ctx; } class LicenseType extends BaseModel implements IConvertible { // @Ignore() List? LicenseItems; // @Ignore() List? Prices; // @Ignore() int? PeriodOfNoticeDays; // @Ignore() LicenseType? NextLicenseOption; // @Required() String? Name; // @Required() String? Description; // @Required() bool? ExtraLicenseOption; DateTime? ModifiedDate; int? Id; LicenseType({this.LicenseItems,this.Prices,this.PeriodOfNoticeDays,this.NextLicenseOption,this.Name,this.Description,this.ExtraLicenseOption,this.ModifiedDate,this.Id}); LicenseType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); LicenseItems = JsonConverters.fromJson(json['LicenseItems'],'List',context!); Prices = JsonConverters.fromJson(json['Prices'],'List',context!); PeriodOfNoticeDays = json['PeriodOfNoticeDays']; NextLicenseOption = JsonConverters.fromJson(json['NextLicenseOption'],'LicenseType',context!); Name = json['Name']; Description = json['Description']; ExtraLicenseOption = json['ExtraLicenseOption']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'LicenseItems': JsonConverters.toJson(LicenseItems,'List',context!), 'Prices': JsonConverters.toJson(Prices,'List',context!), 'PeriodOfNoticeDays': PeriodOfNoticeDays, 'NextLicenseOption': JsonConverters.toJson(NextLicenseOption,'LicenseType',context!), 'Name': Name, 'Description': Description, 'ExtraLicenseOption': ExtraLicenseOption, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'Id': Id }); getTypeName() => "LicenseType"; TypeContext? context = _ctx; } class LicenseInformationQueryResponse implements IConvertible { String? Name; String? Description; Uri? Url; bool? FreeEdition; bool? StartEdition; bool? ProEdition; bool? SmartEdition; bool? EnterpriseEdition; String? FreeEditionValue; String? StartEditionValue; String? ProEditionValue; String? SmartEditionValue; String? EnterpriseEditionValue; int? LicenseInformationTypeId; LicenseInformationQueryResponse({this.Name,this.Description,this.Url,this.FreeEdition,this.StartEdition,this.ProEdition,this.SmartEdition,this.EnterpriseEdition,this.FreeEditionValue,this.StartEditionValue,this.ProEditionValue,this.SmartEditionValue,this.EnterpriseEditionValue,this.LicenseInformationTypeId}); LicenseInformationQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Name = json['Name']; Description = json['Description']; Url = JsonConverters.fromJson(json['Url'],'Uri',context!); FreeEdition = json['FreeEdition']; StartEdition = json['StartEdition']; ProEdition = json['ProEdition']; SmartEdition = json['SmartEdition']; EnterpriseEdition = json['EnterpriseEdition']; FreeEditionValue = json['FreeEditionValue']; StartEditionValue = json['StartEditionValue']; ProEditionValue = json['ProEditionValue']; SmartEditionValue = json['SmartEditionValue']; EnterpriseEditionValue = json['EnterpriseEditionValue']; LicenseInformationTypeId = json['LicenseInformationTypeId']; return this; } Map toJson() => { 'Name': Name, 'Description': Description, 'Url': JsonConverters.toJson(Url,'Uri',context!), 'FreeEdition': FreeEdition, 'StartEdition': StartEdition, 'ProEdition': ProEdition, 'SmartEdition': SmartEdition, 'EnterpriseEdition': EnterpriseEdition, 'FreeEditionValue': FreeEditionValue, 'StartEditionValue': StartEditionValue, 'ProEditionValue': ProEditionValue, 'SmartEditionValue': SmartEditionValue, 'EnterpriseEditionValue': EnterpriseEditionValue, 'LicenseInformationTypeId': LicenseInformationTypeId }; getTypeName() => "LicenseInformationQueryResponse"; TypeContext? context = _ctx; } // @Route("/licenses/types/", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class LicenseTypeQuery extends QueryDb2 implements IReturn>, IConvertible, IGet { /** * If you want to only select Extra license options */ // @ApiMember(DataType="boolean", Description="If you want to only select Extra license options", ParameterType="query") bool? ExtraLicenseOption; /** * What country you want to list the prices for */ // @ApiMember(DataType="string", Description="What country you want to list the prices for") String? CountryId; /** * If you want to include the connected license items */ // @ApiMember(DataType="boolean", Description="If you want to include the connected license items", ParameterType="query") bool? IncludeLicenseItems; /** * If you want to include the connected licens prices */ // @ApiMember(DataType="boolean", Description="If you want to include the connected licens prices", ParameterType="query") bool? IncludeLicensePrices; ResponseStatus? ResponseStatus; LicenseTypeQuery({this.ExtraLicenseOption,this.CountryId,this.IncludeLicenseItems,this.IncludeLicensePrices,this.ResponseStatus}); LicenseTypeQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ExtraLicenseOption = json['ExtraLicenseOption']; CountryId = json['CountryId']; IncludeLicenseItems = json['IncludeLicenseItems']; IncludeLicensePrices = json['IncludeLicensePrices']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => super.toJson()..addAll({ 'ExtraLicenseOption': ExtraLicenseOption, 'CountryId': CountryId, 'IncludeLicenseItems': IncludeLicenseItems, 'IncludeLicensePrices': IncludeLicensePrices, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "LicenseTypeQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'Currency': TypeInfo(TypeOf.Enum, enumValues:Currency.values), 'Country': TypeInfo(TypeOf.Class, create:() => Country()), 'LicenseTypeItem': TypeInfo(TypeOf.Class, create:() => LicenseTypeItem()), 'LicensePrice': TypeInfo(TypeOf.Class, create:() => LicensePrice()), 'LicenseType': TypeInfo(TypeOf.Class, create:() => LicenseType()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'List': TypeInfo(TypeOf.Class, create:() => []), 'LicenseInformationQueryResponse': TypeInfo(TypeOf.Class, create:() => LicenseInformationQueryResponse()), 'Uri': TypeInfo(TypeOf.Class, create:() => Uri()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'LicenseTypeQuery': TypeInfo(TypeOf.Class, create:() => LicenseTypeQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });