205 lines
4.6 KiB
C#
205 lines
4.6 KiB
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Alipay.AopSdk.Core;
|
|||
|
|
using Alipay.AopSdk.Core.Response;
|
|||
|
|
using Alipay.AopSdk.Core.Util;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Request
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AOP API: alipay.open.public.life.create
|
|||
|
|
/// </summary>
|
|||
|
|
public class AlipayOpenPublicLifeCreateRequest : IAopUploadRequest<AlipayOpenPublicLifeCreateResponse>
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 背景图片,需上传图片原始二进制流,此图片显示在支付宝客户端生活号主页上方背景图位置,后缀是jpg或者jpeg,图片大小限制1mb
|
|||
|
|
/// </summary>
|
|||
|
|
public FileItem Background { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 联系人邮箱
|
|||
|
|
/// </summary>
|
|||
|
|
public string ContactEmail { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 联系人姓名
|
|||
|
|
/// </summary>
|
|||
|
|
public string ContactName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 联系人电话
|
|||
|
|
/// </summary>
|
|||
|
|
public string ContactTel { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客服电话,可以是电话号码,手机号码,400电话
|
|||
|
|
/// </summary>
|
|||
|
|
public string CustomerTel { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 生活号简介,此内容显示在支付宝客户端生活号主页简介区块
|
|||
|
|
/// </summary>
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 扩展数据JSON串
|
|||
|
|
/// </summary>
|
|||
|
|
public string ExtendData { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 生活号名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string LifeName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// logo图片,需上传图片原始二进制流,此图片显示在支付宝客户端生活号主页上方位置,后缀是jpg或者jpeg,图片大小限制1mb,图片最小150px ,图片建议为是正方形
|
|||
|
|
/// </summary>
|
|||
|
|
public FileItem Logo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// mcc code
|
|||
|
|
/// </summary>
|
|||
|
|
public string MccCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目前只支持 LIFE_APP:应用号
|
|||
|
|
/// </summary>
|
|||
|
|
public string PublicBizType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 生活号前端展示类型
|
|||
|
|
/// </summary>
|
|||
|
|
public string ShowStyle { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 支付宝用户id,由支付宝同学提供用户id,为该生活号对应pid
|
|||
|
|
/// </summary>
|
|||
|
|
public string UserId { get; set; }
|
|||
|
|
|
|||
|
|
#region IAopUploadRequest Members
|
|||
|
|
|
|||
|
|
public IDictionary<string, FileItem> GetFileParameters()
|
|||
|
|
{
|
|||
|
|
IDictionary<string, FileItem> parameters = new Dictionary<string, FileItem>();
|
|||
|
|
parameters.Add("background", Background);
|
|||
|
|
parameters.Add("logo", Logo);
|
|||
|
|
return parameters;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#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 void SetApiVersion(string apiVersion)
|
|||
|
|
{
|
|||
|
|
this.apiVersion = apiVersion;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string GetApiVersion()
|
|||
|
|
{
|
|||
|
|
return apiVersion;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string GetApiName()
|
|||
|
|
{
|
|||
|
|
return "alipay.open.public.life.create";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public IDictionary<string, string> GetParameters()
|
|||
|
|
{
|
|||
|
|
var parameters = new AopDictionary();
|
|||
|
|
parameters.Add("contact_email", ContactEmail);
|
|||
|
|
parameters.Add("contact_name", ContactName);
|
|||
|
|
parameters.Add("contact_tel", ContactTel);
|
|||
|
|
parameters.Add("customer_tel", CustomerTel);
|
|||
|
|
parameters.Add("description", Description);
|
|||
|
|
parameters.Add("extend_data", ExtendData);
|
|||
|
|
parameters.Add("life_name", LifeName);
|
|||
|
|
parameters.Add("mcc_code", MccCode);
|
|||
|
|
parameters.Add("public_biz_type", PublicBizType);
|
|||
|
|
parameters.Add("show_style", ShowStyle);
|
|||
|
|
parameters.Add("user_id", UserId);
|
|||
|
|
return parameters;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public AopObject GetBizModel()
|
|||
|
|
{
|
|||
|
|
return bizModel;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void SetBizModel(AopObject bizModel)
|
|||
|
|
{
|
|||
|
|
this.bizModel = bizModel;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|