/* Options: Date: 2025-07-04 10:35:47 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCallOffContractSearchOptions.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class CallOffContractSearchOptions implements IConvertible { bool? ActiveFilter; bool? CurrentOnly; CallOffContractSearchOptions({this.ActiveFilter,this.CurrentOnly}); CallOffContractSearchOptions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ActiveFilter = json['ActiveFilter']; CurrentOnly = json['CurrentOnly']; return this; } Map toJson() => { 'ActiveFilter': ActiveFilter, 'CurrentOnly': CurrentOnly }; getTypeName() => "CallOffContractSearchOptions"; TypeContext? context = _ctx; } // @Route("/calloffcontracts/searchoptions", "GET") class GetCallOffContractSearchOptions implements IReturn, IConvertible, IGet { GetCallOffContractSearchOptions(); GetCallOffContractSearchOptions.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => CallOffContractSearchOptions(); getResponseTypeName() => "CallOffContractSearchOptions"; getTypeName() => "GetCallOffContractSearchOptions"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'CallOffContractSearchOptions': TypeInfo(TypeOf.Class, create:() => CallOffContractSearchOptions()), 'GetCallOffContractSearchOptions': TypeInfo(TypeOf.Class, create:() => GetCallOffContractSearchOptions()), });