using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOfflineProviderEquipmentAuthRemoveResponse. /// public class AlipayOfflineProviderEquipmentAuthRemoveResponse : AopResponse { /// /// 被解绑的机具编号 /// [JsonProperty("device_id")] public string DeviceId { get; set; } /// /// 机具厂商PID /// [JsonProperty("merchant_pid")] public string MerchantPid { get; set; } } }