/* Options: Date: 2024-10-18 04:17:10 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: GetCustomerQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Get a list of CustomerQuery which are used for Outlook exports */ class GetCustomerQuery implements IReturn, IConvertible { Map? Query; GetCustomerQuery({this.Query}); GetCustomerQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Query = JsonConverters.fromJson(json['Query'],'Map',context!); return this; } Map toJson() => { 'Query': JsonConverters.toJson(Query,'Map',context!) }; createResponse() => GetCustomerQuery(); getResponseTypeName() => "GetCustomerQuery"; getTypeName() => "GetCustomerQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'GetCustomerQuery': TypeInfo(TypeOf.Class, create:() => GetCustomerQuery()), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), });