/* Options: Date: 2026-03-31 20:26:16 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Get4PSBCContactpersons.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get contactpersons mapped to 4PS specific result set */ // @Route("/4PSBC/contactpersons", "GET") // @Api(Description="Get contactpersons mapped to 4PS specific result set") // @ApiResponse(Description="Contactpersons are returned in the message body", IsDefaultResponse=true, StatusCode=200) class Get4PSBCContactpersons implements IReturn>, IConvertible, IGet { /** * Number of items in the resultset per page. Default = 100 */ // @ApiMember(Description="Number of items in the resultset per page. Default = 100") int? PageSize; /** * Page number of paged resultset. Default = 1 */ // @ApiMember(Description="Page number of paged resultset. Default = 1") int? PageNumber; Get4PSBCContactpersons({this.PageSize,this.PageNumber}); Get4PSBCContactpersons.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PageSize = json['PageSize']; PageNumber = json['PageNumber']; return this; } Map toJson() => { 'PageSize': PageSize, 'PageNumber': PageNumber }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "Get4PSBCContactpersons"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_dogw.klokgroep.nl', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'Data_ContactPerson': TypeInfo(TypeOf.Class, create:() => Data_ContactPerson()), 'Get4PSBCContactpersons': TypeInfo(TypeOf.Class, create:() => Get4PSBCContactpersons()), });