Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayPcreditUserProfileSendModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

43 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayPcreditUserProfileSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditUserProfileSendModel : AopObject
{
/// <summary>
/// 委派采集唯一业务流水号,用户标识回执的委派采集任务,业务方在委派数据采集时提供到商户
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 采集的数据类别,用于标识采集数据类型,商户需要和平台约定,数据类别由平台分配给商户,如: 公积金数据 - HOUSING_FUND 运营商数据 - MOBILE_PHONE_CONTACTS 信用卡账单 -
/// CREDIT_CARD_BILL
/// </summary>
[JsonProperty("item_key")]
public string ItemKey { get; set; }
/// <summary>
/// 采集业务单号,用于在商户系统唯一标识一次采集任务,由商户系统生成
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 扩展参数json格式用于商户回执给业务方每种数据类别的扩展信息可能不同具体信息由业务方和商户约定如无约定默认可不传
/// </summary>
[JsonProperty("params")]
public string Params { get; set; }
/// <summary>
/// 数据采集状态,用于标记采集结果,状态值和商户约定,目前支持: SUCCESS-成功 FAIL-失败
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}