/* Options: Date: 2025-04-05 01:29:37 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: AdminIncentivesQuery.* //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 IncentiveRecurrenceFrequency { OneTime, Weekly, Monthly, } class IncentiveCompanyRelation extends BaseModel implements IConvertible { int? Id; String? CompanyId; int? IncentiveId; DateTime? CreatedDate; IncentiveCompanyRelation({this.Id,this.CompanyId,this.IncentiveId,this.CreatedDate}); IncentiveCompanyRelation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; CompanyId = json['CompanyId']; IncentiveId = json['IncentiveId']; CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'CompanyId': CompanyId, 'IncentiveId': IncentiveId, 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!) }); getTypeName() => "IncentiveCompanyRelation"; TypeContext? context = _ctx; } enum CriteriaType { LicenseAvailability, SmsActivation, eAccountingActivation, CodeLockActivation, SocialActivation, OnlinePaymentActivation, FollowUpMessageActivation, RatingActivation, } class IncentiveCriteria extends BaseModel implements IConvertible { int? Id; int? IncentiveId; CriteriaType? CriteriaType; String? Value; bool? InvertCondition; DateTime? CreatedDate; IncentiveCriteria({this.Id,this.IncentiveId,this.CriteriaType,this.Value,this.InvertCondition,this.CreatedDate}); IncentiveCriteria.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; IncentiveId = json['IncentiveId']; CriteriaType = JsonConverters.fromJson(json['CriteriaType'],'CriteriaType',context!); Value = json['Value']; InvertCondition = json['InvertCondition']; CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'IncentiveId': IncentiveId, 'CriteriaType': JsonConverters.toJson(CriteriaType,'CriteriaType',context!), 'Value': Value, 'InvertCondition': InvertCondition, 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!) }); getTypeName() => "IncentiveCriteria"; TypeContext? context = _ctx; } enum IncentiveActionType { Upgrade, AddOn, Information, } class IncentiveAction extends BaseModel implements IConvertible { int? Id; IncentiveActionType? ActionType; String? Page; String? Segment; String? Element; int? LicenseTypeId; IncentiveAction({this.Id,this.ActionType,this.Page,this.Segment,this.Element,this.LicenseTypeId}); IncentiveAction.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; ActionType = JsonConverters.fromJson(json['ActionType'],'IncentiveActionType',context!); Page = json['Page']; Segment = json['Segment']; Element = json['Element']; LicenseTypeId = json['LicenseTypeId']; return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'ActionType': JsonConverters.toJson(ActionType,'IncentiveActionType',context!), 'Page': Page, 'Segment': Segment, 'Element': Element, 'LicenseTypeId': LicenseTypeId }); getTypeName() => "IncentiveAction"; TypeContext? context = _ctx; } class Incentive extends BaseModel implements IConvertible { int? Id; String? Heading; String? StorageUrl; String? SuccessButtonText; bool? Active; int? ActionId; IncentiveRecurrenceFrequency? Frequency; int? RecurrenceInterval; int? InitialDelayInSeconds; int? MaxDisplayCount; DateTime? ValidFrom; DateTime? ValidTo; DateTime? CreatedDate; DateTime? ModifiedDate; bool? AppliesToAllCompanies; String? Payload; List? Companies; List? Criteria; // @Ignore() IncentiveAction? Action; Incentive({this.Id,this.Heading,this.StorageUrl,this.SuccessButtonText,this.Active,this.ActionId,this.Frequency,this.RecurrenceInterval,this.InitialDelayInSeconds,this.MaxDisplayCount,this.ValidFrom,this.ValidTo,this.CreatedDate,this.ModifiedDate,this.AppliesToAllCompanies,this.Payload,this.Companies,this.Criteria,this.Action}); Incentive.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; Heading = json['Heading']; StorageUrl = json['StorageUrl']; SuccessButtonText = json['SuccessButtonText']; Active = json['Active']; ActionId = json['ActionId']; Frequency = JsonConverters.fromJson(json['Frequency'],'IncentiveRecurrenceFrequency',context!); RecurrenceInterval = json['RecurrenceInterval']; InitialDelayInSeconds = json['InitialDelayInSeconds']; MaxDisplayCount = json['MaxDisplayCount']; ValidFrom = JsonConverters.fromJson(json['ValidFrom'],'DateTime',context!); ValidTo = JsonConverters.fromJson(json['ValidTo'],'DateTime',context!); CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); AppliesToAllCompanies = json['AppliesToAllCompanies']; Payload = json['Payload']; Companies = JsonConverters.fromJson(json['Companies'],'List',context!); Criteria = JsonConverters.fromJson(json['Criteria'],'List',context!); Action = JsonConverters.fromJson(json['Action'],'IncentiveAction',context!); return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'Heading': Heading, 'StorageUrl': StorageUrl, 'SuccessButtonText': SuccessButtonText, 'Active': Active, 'ActionId': ActionId, 'Frequency': JsonConverters.toJson(Frequency,'IncentiveRecurrenceFrequency',context!), 'RecurrenceInterval': RecurrenceInterval, 'InitialDelayInSeconds': InitialDelayInSeconds, 'MaxDisplayCount': MaxDisplayCount, 'ValidFrom': JsonConverters.toJson(ValidFrom,'DateTime',context!), 'ValidTo': JsonConverters.toJson(ValidTo,'DateTime',context!), 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!), 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'AppliesToAllCompanies': AppliesToAllCompanies, 'Payload': Payload, 'Companies': JsonConverters.toJson(Companies,'List',context!), 'Criteria': JsonConverters.toJson(Criteria,'List',context!), 'Action': JsonConverters.toJson(Action,'IncentiveAction',context!) }); getTypeName() => "Incentive"; TypeContext? context = _ctx; } // @Route("/superadmin/incentives/", "GET") // @ValidateRequest(Validator="IsAuthenticated") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class AdminIncentivesQuery extends QueryDb2> implements IReturn>>, IConvertible, IGet { int? Id; String? CompanyId; Date? ValidFrom; Date? ValidTo; int? ActionId; bool? Active; bool? IncludeCriteria; bool? IncludeCompanies; bool? IncludeAction; AdminIncentivesQuery({this.Id,this.CompanyId,this.ValidFrom,this.ValidTo,this.ActionId,this.Active,this.IncludeCriteria,this.IncludeCompanies,this.IncludeAction}); AdminIncentivesQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; CompanyId = json['CompanyId']; ValidFrom = JsonConverters.fromJson(json['ValidFrom'],'Date',context!); ValidTo = JsonConverters.fromJson(json['ValidTo'],'Date',context!); ActionId = json['ActionId']; Active = json['Active']; IncludeCriteria = json['IncludeCriteria']; IncludeCompanies = json['IncludeCompanies']; IncludeAction = json['IncludeAction']; return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id, 'CompanyId': CompanyId, 'ValidFrom': JsonConverters.toJson(ValidFrom,'Date',context!), 'ValidTo': JsonConverters.toJson(ValidTo,'Date',context!), 'ActionId': ActionId, 'Active': Active, 'IncludeCriteria': IncludeCriteria, 'IncludeCompanies': IncludeCompanies, 'IncludeAction': IncludeAction }); createResponse() => QueryResponse>(); getResponseTypeName() => "QueryResponse>"; getTypeName() => "AdminIncentivesQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'IncentiveRecurrenceFrequency': TypeInfo(TypeOf.Enum, enumValues:IncentiveRecurrenceFrequency.values), 'IncentiveCompanyRelation': TypeInfo(TypeOf.Class, create:() => IncentiveCompanyRelation()), 'CriteriaType': TypeInfo(TypeOf.Enum, enumValues:CriteriaType.values), 'IncentiveCriteria': TypeInfo(TypeOf.Class, create:() => IncentiveCriteria()), 'IncentiveActionType': TypeInfo(TypeOf.Enum, enumValues:IncentiveActionType.values), 'IncentiveAction': TypeInfo(TypeOf.Class, create:() => IncentiveAction()), 'Incentive': TypeInfo(TypeOf.Class, create:() => Incentive()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'List': TypeInfo(TypeOf.Class, create:() => []), 'QueryResponse>': TypeInfo(TypeOf.Class, create:() => QueryResponse>()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'AdminIncentiveQueryResponse': TypeInfo(TypeOf.Class, create:() => AdminIncentiveQueryResponse()), 'AdminIncentivesQuery': TypeInfo(TypeOf.Class, create:() => AdminIncentivesQuery()), 'List>': TypeInfo(TypeOf.Class, create:() => >[]), 'Date': TypeInfo(TypeOf.Class, create:() => Date()), });