/* Options:
Date: 2026-02-14 10:06:11
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: AddItemDataNotification.*
//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.ItemDataNotification;
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.ItemDataNotification
{
///
///Item Data Notification
///
[Route("/itemDataNotification", "POST")]
[Api(Description="Item Data Notification")]
[ApiResponse(Description="Add ItemDataNotification request received", IsDefaultResponse=true, StatusCode=200)]
[ApiResponse(Description="ItemDataNotification not accepted, Confirm Sender GLN", ResponseType=typeof(System.UnauthorizedAccessException), StatusCode=403)]
public partial class AddItemDataNotification
: IReturn
{
///
///ItemDataNotification model containing all of the ItemDataNotification data
///
[ApiMember(Description="ItemDataNotification model containing all of the ItemDataNotification data", ParameterType="model")]
public virtual ItemDataNotificationMessage ItemDataNotification { get; set; }
}
}
namespace DX.STF.Models.Dto.GS1
{
public partial class ItemDataNotificationMessage
: BaseDocument
{
public virtual TransactionalParty DataRecipient { get; set; }
public virtual TransactionalParty DataSource { get; set; }
public virtual string ItemDataNotificationIdentification { get; set; }
public virtual List ItemDataNotificationLineItem { get; set; } = [];
}
}