/* Options: Date: 2026-09-09 11:02:26 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://services.acct.2service.nl //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetShipments.* //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 _2Service.Webservices.ServiceModel.Dealers; using _2Service.Webservices.ServiceModel; namespace _2Service.Webservices.ServiceModel { public partial class OperationResult { /// ///Specifies if the operation was successful. /// [ApiMember(Description="Specifies if the operation was successful.", ParameterType="model")] public virtual bool IsSuccessful { get; set; } /// ///States error message in case of unsuccessful operation. /// [ApiMember(Description="States error message in case of unsuccessful operation.", ParameterType="model")] public virtual string? ErrorMessage { get; set; } } public partial class OperationResult : OperationResult { /// ///Result value /// [ApiMember(Description="Result value", ParameterType="model")] public virtual T? Result { get; set; } } } namespace _2Service.Webservices.ServiceModel.Dealers { public partial class AuthenticatedRequest { /// ///Session token received from successful authentication. /// [ApiMember(Description="Session token received from successful authentication.", IsRequired=true, ParameterType="query")] public virtual string SessionToken { get; set; } } [Route("/dealers/shipments", "GET")] public partial class GetShipments : AuthenticatedRequest, IReturn { /// ///Start of date range to retrieve shipments for. /// [ApiMember(Description="Start of date range to retrieve shipments for.", IsRequired=true)] public virtual DateTime DateFrom { get; set; } /// ///End of date range to retrieve shipments for. /// [ApiMember(Description="End of date range to retrieve shipments for.")] public virtual DateTime? DateTo { get; set; } } public partial class ShipmentsResponse : OperationResult> { } }