/* Options: Date: 2025-04-04 19:26:08 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: LicensePlanQuery.* //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; } class VossPlanResponse implements IConvertible { String? Id; String? Name; String? LengthUnit; String? Length; VossPlanResponse({this.Id,this.Name,this.LengthUnit,this.Length}); VossPlanResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; LengthUnit = json['LengthUnit']; Length = json['Length']; return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'LengthUnit': LengthUnit, 'Length': Length }; getTypeName() => "VossPlanResponse"; TypeContext? context = _ctx; } class LicensePlan extends BaseModel implements IBaseModelUpdated, IBaseModelCreated, IConvertible { // @Ignore() VossPlanResponse? VossPlan; // @Required() int? Id; String? VossPlanId; // @Required() int? PlanLength; // @Required() int? PlanLengthUnitId; // @Required() String? Name; // @Required() String? Description; DateTime? UpdatedDate; DateTime? CreatedDate; LicensePlan({this.VossPlan,this.Id,this.VossPlanId,this.PlanLength,this.PlanLengthUnitId,this.Name,this.Description,this.UpdatedDate,this.CreatedDate}); LicensePlan.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); VossPlan = JsonConverters.fromJson(json['VossPlan'],'VossPlanResponse',context!); Id = json['Id']; VossPlanId = json['VossPlanId']; PlanLength = json['PlanLength']; PlanLengthUnitId = json['PlanLengthUnitId']; Name = json['Name']; Description = json['Description']; UpdatedDate = JsonConverters.fromJson(json['UpdatedDate'],'DateTime',context!); CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'VossPlan': JsonConverters.toJson(VossPlan,'VossPlanResponse',context!), 'Id': Id, 'VossPlanId': VossPlanId, 'PlanLength': PlanLength, 'PlanLengthUnitId': PlanLengthUnitId, 'Name': Name, 'Description': Description, 'UpdatedDate': JsonConverters.toJson(UpdatedDate,'DateTime',context!), 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!) }); getTypeName() => "LicensePlan"; TypeContext? context = _ctx; } enum LengthUnit { Week, Month, Year, } class LicensePlanQueryResponse implements IConvertible { int? Id; String? VossPlanId; String? Name; String? Description; VossPlanResponse? VossPlan; int? PlanLength; LengthUnit? PlanLengthUnit; DateTime? UpdatedDate; DateTime? CreatedDate; LicensePlanQueryResponse({this.Id,this.VossPlanId,this.Name,this.Description,this.VossPlan,this.PlanLength,this.PlanLengthUnit,this.UpdatedDate,this.CreatedDate}); LicensePlanQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; VossPlanId = json['VossPlanId']; Name = json['Name']; Description = json['Description']; VossPlan = JsonConverters.fromJson(json['VossPlan'],'VossPlanResponse',context!); PlanLength = json['PlanLength']; PlanLengthUnit = JsonConverters.fromJson(json['PlanLengthUnit'],'LengthUnit',context!); UpdatedDate = JsonConverters.fromJson(json['UpdatedDate'],'DateTime',context!); CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); return this; } Map toJson() => { 'Id': Id, 'VossPlanId': VossPlanId, 'Name': Name, 'Description': Description, 'VossPlan': JsonConverters.toJson(VossPlan,'VossPlanResponse',context!), 'PlanLength': PlanLength, 'PlanLengthUnit': JsonConverters.toJson(PlanLengthUnit,'LengthUnit',context!), 'UpdatedDate': JsonConverters.toJson(UpdatedDate,'DateTime',context!), 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!) }; getTypeName() => "LicensePlanQueryResponse"; TypeContext? context = _ctx; } abstract class IBaseModelCreated { DateTime? CreatedDate; } abstract class IBaseModelUpdated { DateTime? UpdatedDate; } // @Route("/licenses/plans/", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class LicensePlanQuery extends QueryDb2 implements IReturn>, IConvertible, IGet { LicensePlanQuery(); LicensePlanQuery.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "LicensePlanQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'VossPlanResponse': TypeInfo(TypeOf.Class, create:() => VossPlanResponse()), 'LicensePlan': TypeInfo(TypeOf.Class, create:() => LicensePlan()), 'LengthUnit': TypeInfo(TypeOf.Enum, enumValues:LengthUnit.values), 'LicensePlanQueryResponse': TypeInfo(TypeOf.Class, create:() => LicensePlanQueryResponse()), 'IBaseModelCreated': TypeInfo(TypeOf.Interface), 'IBaseModelUpdated': TypeInfo(TypeOf.Interface), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'LicensePlanQuery': TypeInfo(TypeOf.Class, create:() => LicensePlanQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });