(* Options: Date: 2026-09-09 11:02:09 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://services.acct.2service.nl //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetParts.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace _2Service.Webservices.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AuthenticatedRequest() = /// ///Session token received from successful authentication. /// [] member val SessionToken:String = null with get,set [] type OperationResult() = /// ///Specifies if the operation was successful. /// [] member val IsSuccessful:Boolean = new Boolean() with get,set /// ///States error message in case of unsuccessful operation. /// [] member val ErrorMessage:String = null with get,set [] type OperationResult() = inherit OperationResult() /// ///Result value /// [] member val Result:T = null with get,set [] [] type GetParts() = inherit AuthenticatedRequest() interface IReturn> /// ///Number of parts to return. /// [] member val PageSize:Int32 = new Int32() with get,set /// ///Page number. /// [] member val Page:Int32 = new Int32() with get,set