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