/* Options: Date: 2026-09-09 11:03:00 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://services.acct.2service.nl //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetShipments.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class AuthenticatedRequest { /** @description Session token received from successful authentication. */ // @ApiMember(Description="Session token received from successful authentication.", IsRequired=true, ParameterType="query") public SessionToken: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class OperationResult { /** @description Specifies if the operation was successful. */ // @ApiMember(Description="Specifies if the operation was successful.", ParameterType="model") public IsSuccessful: boolean; /** @description States error message in case of unsuccessful operation. */ // @ApiMember(Description="States error message in case of unsuccessful operation.", ParameterType="model") public ErrorMessage?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class OperationResult_1 extends OperationResult { /** @description Result value */ // @ApiMember(Description="Result value", ParameterType="model") public Result?: T; public constructor(init?: Partial>) { super(init); (Object as any).assign(this, init); } } export class ShipmentsResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/dealers/shipments", "GET") export class GetShipments extends AuthenticatedRequest implements IReturn { /** @description Start of date range to retrieve shipments for. */ // @ApiMember(Description="Start of date range to retrieve shipments for.", IsRequired=true) public DateFrom: string; /** @description End of date range to retrieve shipments for. */ // @ApiMember(Description="End of date range to retrieve shipments for.") public DateTo?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetShipments'; } public getMethod() { return 'GET'; } public createResponse() { return new ShipmentsResponse(); } }