NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMerchantItemFileUploa...

24 lines
655 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMerchantItemFileUploadResponse.
/// </summary>
public class AlipayMerchantItemFileUploadResponse : AopResponse
{
/// <summary>
/// 文件在商品中心的素材标识素材ID长期有效
/// </summary>
[XmlElement("material_id")]
public string MaterialId { get; set; }
/// <summary>
/// 文件在商品中心的素材标示,创建/更新商品时使用
/// </summary>
[XmlElement("material_key")]
public string MaterialKey { get; set; }
}
}