/* Options: Date: 2026-04-14 20:50:32 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: Ping.* //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.Ping; namespace DX.STF.Application.ClientApi.Messages.Ping { /// ///Test authentication and connectivity /// [Route("/ping", "POST")] [Api(Description="Test authentication and connectivity")] [ApiResponse(Description="Ping response message", StatusCode=200)] public partial class Ping : IReturn { /// ///Ping message text /// [ApiMember(Description="Ping message text", IsRequired=true)] public virtual string Message { get; set; } } public partial class PingResponse { public virtual string Message { get; set; } public virtual string GlnNumber { get; set; } } }