You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.4 KiB
C#

9 months ago
using System;
using System.Collections.Generic;
using Aop.Api.Response;
namespace Aop.Api.Request
{
/// <summary>
/// AOP API: alipay.asset.account.bind
/// </summary>
public class AlipayAssetAccountBindRequest : IAopRequest<AlipayAssetAccountBindResponse>
{
/// <summary>
/// 绑定场景,目前仅支持如下: wechat微信公众平台 transport物流转运平台 appOneBind一对一app绑定 注意:必须是这些值,区分大小写。
/// </summary>
public string BindScene { get; set; }
/// <summary>
/// 使用该app提供用户信息的商户可以和app相同。
/// </summary>
public string ProviderId { get; set; }
/// <summary>
/// 用户在商户网站的会员标识。商户需确保其唯一性,不可变更。
/// </summary>
public string ProviderUserId { get; set; }
/// <summary>
/// 用户在商户网站的会员名(登录号或昵称)。
/// </summary>
public string ProviderUserName { get; set; }
#region IAopRequest Members
private bool needEncrypt=false;
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 this.needEncrypt;
}
public void SetNotifyUrl(string notifyUrl){
this.notifyUrl = notifyUrl;
}
public string GetNotifyUrl(){
return this.notifyUrl;
}
public void SetReturnUrl(string returnUrl){
this.returnUrl = returnUrl;
}
public string GetReturnUrl(){
return this.returnUrl;
}
public void SetTerminalType(String terminalType){
this.terminalType=terminalType;
}
public string GetTerminalType(){
return this.terminalType;
}
public void SetTerminalInfo(String terminalInfo){
this.terminalInfo=terminalInfo;
}
public string GetTerminalInfo(){
return this.terminalInfo;
}
public void SetProdCode(String prodCode){
this.prodCode=prodCode;
}
public string GetProdCode(){
return this.prodCode;
}
public string GetApiName()
{
return "alipay.asset.account.bind";
}
public void SetApiVersion(string apiVersion){
this.apiVersion=apiVersion;
}
public string GetApiVersion(){
return this.apiVersion;
}
public IDictionary<string, string> GetParameters()
{
AopDictionary parameters = new AopDictionary();
parameters.Add("bind_scene", this.BindScene);
parameters.Add("provider_id", this.ProviderId);
parameters.Add("provider_user_id", this.ProviderUserId);
parameters.Add("provider_user_name", this.ProviderUserName);
return parameters;
}
public AopObject GetBizModel()
{
return this.bizModel;
}
public void SetBizModel(AopObject bizModel)
{
this.bizModel = bizModel;
}
#endregion
}
}