/* Options: Date: 2026-02-14 10:18:05 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: AddReceivingAdvice.* //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.Framework.Core.Commands; using DX.STF.Models.Dto.GS1; using DX.STF.Application.ClientApi.Messages.ReceivingAdvice; using DX.Framework.Core.Commands.Dto; namespace DX.Framework.Core.Commands { public partial interface ICommandResponse { } } namespace DX.Framework.Core.Commands.Dto { public partial class TokenDto : ICommandResponse { public virtual Guid Token { get; set; } } } namespace DX.STF.Application.ClientApi.Messages.ReceivingAdvice { /// ///Receiving Advice /// [Route("/receivingAdvice", "POST")] [Api(Description="Receiving Advice")] [ApiResponse(Description="Add ReceivingAdvice request received", IsDefaultResponse=true, StatusCode=200)] [ApiResponse(Description="ReceivingAdvice not accepted, Confirm Sender GLN", ResponseType=typeof(System.UnauthorizedAccessException), StatusCode=403)] public partial class AddReceivingAdvice : IReturn { /// ///ReceivingAdvice model containing all of the ReceivingAdvice data /// [ApiMember(Description="ReceivingAdvice model containing all of the ReceivingAdvice data", ParameterType="model")] public virtual ReceivingAdviceMessage ReceivingAdvice { get; set; } } } namespace DX.STF.Models.Dto.GS1 { public partial class ReceivingAdviceMessage { public virtual Header Header { get; set; } public virtual ReceivingAdvice ReceivingAdvice { get; set; } } }