using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ApprovedInfo Data Structure. /// [Serializable] public class ApprovedInfo : AopObject { /// /// 用户申请订单号回传。 Unique Application No. /// [XmlElement("application_no")] public string ApplicationNo { get; set; } /// /// URL to download approval letter Approval letter 文件下载地址 /// [XmlElement("approval_letter_url")] public string ApprovalLetterUrl { get; set; } /// /// 泰国移民局发放的批准或拒绝码。 IMM’s code of approve or reject. Ex. “PAC2019020987654” , “NAC2019020987654” /// [XmlElement("imm_code")] public string ImmCode { get; set; } /// /// 移民局办公室名称。 Immigration officer full name. /// [XmlElement("imm_fullname")] public string ImmFullname { get; set; } /// /// 移民局办公室地址。 Immigration officer position. /// [XmlElement("imm_position")] public string ImmPosition { get; set; } /// /// 记录。 Note. /// [XmlElement("note")] public string Note { get; set; } /// /// 支付费用详情 /// [XmlElement("payment_confirm_url")] public string PaymentConfirmUrl { get; set; } /// /// URL to download receipt. 办理收据文件下载地址。 /// [XmlElement("receipt_url")] public string ReceiptUrl { get; set; } /// /// 备注。 Remark. /// [XmlElement("remark")] public string Remark { get; set; } /// /// 申请状态:通过/拒绝。 Status of application:Approved/Rejected. /// [XmlElement("status")] public string Status { get; set; } /// /// 批准状态变更时间。 DateTime of approved or rejected. /// [XmlElement("status_date_time")] public string StatusDateTime { get; set; } /// /// URL to download TM.6 TM6 文件下载地址 /// [XmlElement("tm_6_url")] public string Tm6Url { get; set; } /// /// URL to download TM.88 TM88 文件下载地址。 /// [XmlElement("tm_88_url")] public string Tm88Url { get; set; } } }