using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BarcodeEventResponseHeader Data Structure. /// [Serializable] public class BarcodeEventResponseHeader : AopObject { /// /// 200=成功,400=请求错误,403=bundle查询不到。 Status code used to indicate an error, or "200" for success. /// [XmlElement("status_code")] public string StatusCode { get; set; } /// /// Not parsed programmatically. Example "Downstream system offline" /// [XmlElement("status_message")] public string StatusMessage { get; set; } /// /// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions. /// [XmlElement("sub_status_code")] public string SubStatusCode { get; set; } } }