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

22 lines
487 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiQualityTestCloudacptCheckresultSubmitResponse.
/// </summary>
public class KoubeiQualityTestCloudacptCheckresultSubmitResponse : AopResponse
{
/// <summary>
/// 活动id
/// </summary>
[JsonProperty("activity_id")]
public string ActivityId { get; set; }
/// <summary>
/// 批次
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
}
}