using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniMiniappFavoriteextAddModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniMiniappFavoriteextAddModel : AopObject
{
///
/// 小程序收藏业务类型,需要申请分配
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// json格式,扩展信息,key是principleId,value是json串
///
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
///
/// 小程序appid
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 收藏实体principleIds的来源,需要申请分配
///
[XmlElement("principal_biz_type")]
public string PrincipalBizType { get; set; }
///
/// 业务id,比如口碑店铺id
///
[XmlArray("principal_ids")]
[XmlArrayItem("string")]
public List PrincipalIds { get; set; }
///
/// 收藏实体的枚举类型,ITEM:商品,SHOP:店铺,SERVICE:服务
///
[XmlElement("principal_type")]
public string PrincipalType { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}