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

133 lines
2.8 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.Collections.Generic;
using Alipay.AopSdk.Core.Response;
namespace Alipay.AopSdk.Core.Request
{
/// <summary>
/// AOP API: alipay.zdatafront.datatransfered.send
/// </summary>
public class AlipayZdatafrontDatatransferedSendRequest : IAopRequest<AlipayZdatafrontDatatransferedSendResponse>
{
/// <summary>
/// 数据字段identity对应的其他数据字段。使用json格式组织且仅支持字符串类型其他类型请转为字符串。
/// </summary>
public string Data { get; set; }
/// <summary>
/// 合作伙伴的主键数据同一合作伙伴要保证该字段唯一若出现重复后入数据会覆盖先入数据。使用json格式组织且仅支持字符串类型其他类型请转为字符串。
/// </summary>
public string Identity { get; set; }
/// <summary>
/// 合作伙伴标识字段,用来区分数据来源。建议使用公司域名或公司名。
/// </summary>
public string TypeId { get; set; }
#region IAopRequest Members
private bool needEncrypt;
private string apiVersion = "1.0";
private string terminalType;
private string terminalInfo;
private string prodCode;
private string notifyUrl;
private string returnUrl;
private AopObject bizModel;
public void SetNeedEncrypt(bool needEncrypt)
{
this.needEncrypt = needEncrypt;
}
public bool GetNeedEncrypt()
{
return needEncrypt;
}
public void SetNotifyUrl(string notifyUrl)
{
this.notifyUrl = notifyUrl;
}
public string GetNotifyUrl()
{
return notifyUrl;
}
public void SetReturnUrl(string returnUrl)
{
this.returnUrl = returnUrl;
}
public string GetReturnUrl()
{
return returnUrl;
}
public void SetTerminalType(string terminalType)
{
this.terminalType = terminalType;
}
public string GetTerminalType()
{
return terminalType;
}
public void SetTerminalInfo(string terminalInfo)
{
this.terminalInfo = terminalInfo;
}
public string GetTerminalInfo()
{
return terminalInfo;
}
public void SetProdCode(string prodCode)
{
this.prodCode = prodCode;
}
public string GetProdCode()
{
return prodCode;
}
public string GetApiName()
{
return "alipay.zdatafront.datatransfered.send";
}
public void SetApiVersion(string apiVersion)
{
this.apiVersion = apiVersion;
}
public string GetApiVersion()
{
return apiVersion;
}
public IDictionary<string, string> GetParameters()
{
var parameters = new AopDictionary();
parameters.Add("data", Data);
parameters.Add("identity", Identity);
parameters.Add("type_id", TypeId);
return parameters;
}
public AopObject GetBizModel()
{
return bizModel;
}
public void SetBizModel(AopObject bizModel)
{
this.bizModel = bizModel;
}
#endregion
}
}