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

22 lines
614 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOfflineMaterialImageUploadResponse.
/// </summary>
public class AlipayOfflineMaterialImageUploadResponse : AopResponse
{
/// <summary>
/// 图片/视频在商家中心的唯一标识
/// </summary>
[JsonProperty("image_id")]
public string ImageId { get; set; }
/// <summary>
/// 图片/视频的访问地址(为了防止盗链,该地址不允许嵌在其他页面展示,只能在新页面展示)
/// </summary>
[JsonProperty("image_url")]
public string ImageUrl { get; set; }
}
}