/* Options: Date: 2026-03-31 21:37:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetOutlookContactItems.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get all Outlook contacts based on CustomerQuery ID */ class GetOutlookContactItems implements IReturn>, IConvertible, IPost { int? QueryID; GetOutlookContactItems({this.QueryID}); GetOutlookContactItems.fromJson(Map json) { fromMap(json); } fromMap(Map json) { QueryID = json['QueryID']; return this; } Map toJson() => { 'QueryID': QueryID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetOutlookContactItems"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dogw.klokgroep.nl', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'OutlookContactItem': TypeInfo(TypeOf.Class, create:() => OutlookContactItem()), 'GetOutlookContactItems': TypeInfo(TypeOf.Class, create:() => GetOutlookContactItems()), });