using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserGroupbuyingSyncModel Data Structure.
///
[Serializable]
public class AlipayUserGroupbuyingSyncModel : AopObject
{
///
/// 拼团结束时间的timestamp
///
[XmlElement("group_expire")]
public string GroupExpire { get; set; }
///
/// 相关拼团的Id
///
[XmlElement("group_id")]
public string GroupId { get; set; }
///
/// 1688处的用户havanaId
///
[XmlElement("havana_id")]
public string HavanaId { get; set; }
///
/// 1688处商品Id
///
[XmlElement("item_id")]
public string ItemId { get; set; }
}
}