NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContentObjectRelationForOpe...

25 lines
660 B
C#
Raw Permalink 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>
/// ContentObjectRelationForOpenapi Data Structure.
/// </summary>
[Serializable]
public class ContentObjectRelationForOpenapi : AopObject
{
/// <summary>
/// 对象id,如关联店铺则是shopId
/// </summary>
[XmlElement("object_id")]
public string ObjectId { get; set; }
/// <summary>
/// 对象类型,内容的关联对象类型。 SHOP代表店铺 ITEM代表商品
/// </summary>
[XmlElement("object_type")]
public string ObjectType { get; set; }
}
}