NewGaoKaoApi/PaymentSDK/AliPay/Domain/SkuDescInfo.cs

31 lines
896 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.Domain
{
/// <summary>
/// SkuDescInfo Data Structure.
/// </summary>
[Serializable]
public class SkuDescInfo : AopObject
{
/// <summary>
/// 城市行政代码,用于不同城市定价时使用,默认价格使用-1
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 第三方商户定义的外部属性值Id,多个id用英文逗号分隔
/// </summary>
[XmlElement("out_pv_id")]
public string OutPvId { get; set; }
/// <summary>
/// 商户库存量单位id.由外部商户生成,保证同一个商品下的id是唯一只支持数字、字母和下划线
/// </summary>
[XmlElement("out_sku_id")]
public string OutSkuId { get; set; }
}
}