NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniMiniappFavori...

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