/* Options:
Date: 2026-03-31 20:24:49
Version: 8.80
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://test-do-services.klokgroep.nl/api
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: Get4PSBCContactpersons.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Drawing;
using DO.Synchronization.IDB_4PSBC.DTO.Operations;
namespace DO.Synchronization.IDB_4PSBC.DTO.Operations
{
///
///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)]
public partial class Get4PSBCContactpersons
: IReturn>
{
///
///Number of items in the resultset per page. Default = 100
///
[ApiMember(Description="Number of items in the resultset per page. Default = 100")]
public virtual int PageSize { get; set; }
///
///Page number of paged resultset. Default = 1
///
[ApiMember(Description="Page number of paged resultset. Default = 1")]
public virtual int PageNumber { get; set; }
}
}