接口文件
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCreditCreditriskDataPutModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayCreditCreditriskDataPutModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据类别,ISV注册成为网商银行的会员,达成数据合作服务,约定数据模型,由网商分配给ISV的数据模型的类别
|
||||
/// </summary>
|
||||
[JsonProperty("category")]
|
||||
public string Category { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外部机构编码(ISV注册成为网商银行的会员,ISV在网商的会员ID)
|
||||
/// </summary>
|
||||
[JsonProperty("dataorgid")]
|
||||
public string Dataorgid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据提供者,ISV注册成为网商银行的会员,达成数据合作服务,约定数据模型,由网商分配给ISV的机构代号
|
||||
/// </summary>
|
||||
[JsonProperty("dataprovider")]
|
||||
public string Dataprovider { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实体编码(ISV客户的支付宝数字ID)
|
||||
/// </summary>
|
||||
[JsonProperty("entitycode")]
|
||||
public string Entitycode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实体名(ISV客户的支付宝登录号)
|
||||
/// </summary>
|
||||
[JsonProperty("entityname")]
|
||||
public string Entityname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实体类型(固定为ALIPAY)
|
||||
/// </summary>
|
||||
[JsonProperty("entitytype")]
|
||||
public string Entitytype { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Json格式,数据内容,ISV注册成为网商银行的会员,达成数据合作服务,约定json串字段和内容,ISV将数据给到网商,网商按照约定解析Json内容
|
||||
/// </summary>
|
||||
[JsonProperty("objectcontent")]
|
||||
public string Objectcontent { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user