/* Options: Date: 2026-02-14 10:10:07 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: AcknowledgeCreditNote.* //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.CreditNote; namespace DX.STF.Application.ClientApi.Messages.CreditNote { /// ///Credit Note /// [Route("/creditNote/{CreditNoteId}/acknowledge", "PUT")] [Api(Description="Credit Note")] [ApiResponse(Description="Updated", IsDefaultResponse=true, StatusCode=204)] [ApiResponse(Description="GLN does not have required access", StatusCode=403)] [ApiResponse(Description="Document not found", StatusCode=404)] public partial class AcknowledgeCreditNote : IReturnVoid { [ApiMember(ExcludeInSchema=true, ParameterType="path")] public virtual Guid CreditNoteId { get; set; } } }