/* Options: Date: 2025-07-04 11:02:36 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: GetContacts.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get all contacts based on CustomerQuery ID */ class GetContacts implements IReturn>, IConvertible, IPost { int? QueryID; GetContacts({this.QueryID}); GetContacts.fromJson(Map json) { fromMap(json); } fromMap(Map json) { QueryID = json['QueryID']; return this; } Map toJson() => { 'QueryID': QueryID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetContacts"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetContacts': TypeInfo(TypeOf.Class, create:() => GetContacts()), });