Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOfflineProviderEquipmentAuthRemoveResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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; }
}
}