using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOfflineProviderEquipmentAuthRemoveModel Data Structure. /// [Serializable] public class AlipayOfflineProviderEquipmentAuthRemoveModel : AopObject { /// /// 机具编号 /// [JsonProperty("device_id")] public string DeviceId { get; set; } /// /// 机具类型 /// [JsonProperty("device_type")] public string DeviceType { get; set; } /// /// 扩展信息,传json格式的字符串,包含auth_alipay_card_no =授权的商户支付宝卡号 /// [JsonProperty("ext_info")] public string ExtInfo { get; set; } /// /// 机具厂商PID /// [JsonProperty("merchant_pid")] public string MerchantPid { get; set; } /// /// 操作人名称 /// [JsonProperty("operator")] public string Operator { get; set; } /// /// 操作人ID /// [JsonProperty("operator_id")] public string OperatorId { get; set; } } }