NewGaoKaoApi/PaymentSDK/AliPay/Domain/UserAppBizDataInfo.cs

73 lines
2.0 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;
namespace Aop.Api.Domain
{
/// <summary>
/// UserAppBizDataInfo Data Structure.
/// </summary>
[Serializable]
public class UserAppBizDataInfo : AopObject
{
/// <summary>
/// 信息分类,详见功能包说明,动态变更的
/// </summary>
[XmlElement("category")]
public string Category { get; set; }
/// <summary>
/// 业务描述
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 业务结束时间,毫秒时间戳
/// </summary>
[XmlElement("end_time")]
public long EndTime { get; set; }
/// <summary>
/// 业务扩展信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户业务流水id应该是商户侧数据的唯一键
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 业务名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 业务开始时间,毫秒时间戳
/// </summary>
[XmlElement("start_time")]
public long StartTime { get; set; }
/// <summary>
/// 业务状态,详见功能包说明,不同信息分类,对应的状态不同
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 业务跳转相对地址接口方会将该相对地址拼接到商户小程序地址后面最终展示给用户的地址alipays://platformapi/startApp?appId=88888888888&page=test
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
/// <summary>
/// 用户id
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}