/* Options: Date: 2026-04-14 20:38:28 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //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 { /// ///Reset order export status /// [Route("/order/{OrderId}/reset", "PUT")] [Api(Description="Reset order export status")] [ApiResponse(Description="Order exported flag reset", StatusCode=204)] public partial class ResetExported : IReturnVoid { [ApiMember(ExcludeInSchema=true, ParameterType="path")] public virtual Guid OrderId { get; set; } } }