/* Options: Date: 2026-02-14 10:18:08 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //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: ResetExported.* //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 DX.STF.Application.ClientApi.Messages.Order; namespace DX.STF.Application.ClientApi.Messages.Order { /// ///Order /// [Route("/order/{OrderId}/reset", "PUT")] [Api(Description="Order")] [ApiResponse(Description="Order exported flag reset", StatusCode=204)] public partial class ResetExported : IReturnVoid { /// ///Order ID or Token /// [ApiMember(Description="Order ID or Token", ExcludeInSchema=true, ParameterType="path")] public virtual Guid OrderId { get; set; } } }