/* Options: Date: 2024-10-18 04:14:33 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentSearchOptions.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DocumentSearchOptions implements IConvertible { bool? ArchiveFilter; DocumentSearchOptions({this.ArchiveFilter}); DocumentSearchOptions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ArchiveFilter = json['ArchiveFilter']; return this; } Map toJson() => { 'ArchiveFilter': ArchiveFilter }; getTypeName() => "DocumentSearchOptions"; TypeContext? context = _ctx; } class GetDocumentSearchOptions implements IReturn, IConvertible { GetDocumentSearchOptions(); GetDocumentSearchOptions.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => DocumentSearchOptions(); getResponseTypeName() => "DocumentSearchOptions"; getTypeName() => "GetDocumentSearchOptions"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'DocumentSearchOptions': TypeInfo(TypeOf.Class, create:() => DocumentSearchOptions()), 'GetDocumentSearchOptions': TypeInfo(TypeOf.Class, create:() => GetDocumentSearchOptions()), });