192 lines
5.4 KiB
C#
192 lines
5.4 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using Aop.Api.Response;
|
||
using Aop.Api.Util;
|
||
|
||
namespace Aop.Api.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 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 void SetApiVersion(string apiVersion){
|
||
this.apiVersion=apiVersion;
|
||
}
|
||
|
||
public string GetApiVersion(){
|
||
return this.apiVersion;
|
||
}
|
||
|
||
public string GetApiName()
|
||
{
|
||
return "alipay.open.public.life.create";
|
||
}
|
||
|
||
public IDictionary<string, string> GetParameters()
|
||
{
|
||
AopDictionary parameters = new AopDictionary();
|
||
parameters.Add("contact_email", this.ContactEmail);
|
||
parameters.Add("contact_name", this.ContactName);
|
||
parameters.Add("contact_tel", this.ContactTel);
|
||
parameters.Add("customer_tel", this.CustomerTel);
|
||
parameters.Add("description", this.Description);
|
||
parameters.Add("extend_data", this.ExtendData);
|
||
parameters.Add("life_name", this.LifeName);
|
||
parameters.Add("mcc_code", this.MccCode);
|
||
parameters.Add("public_biz_type", this.PublicBizType);
|
||
parameters.Add("show_style", this.ShowStyle);
|
||
parameters.Add("user_id", this.UserId);
|
||
return parameters;
|
||
}
|
||
|
||
public AopObject GetBizModel()
|
||
{
|
||
return this.bizModel;
|
||
}
|
||
|
||
public void SetBizModel(AopObject bizModel)
|
||
{
|
||
this.bizModel = bizModel;
|
||
}
|
||
|
||
#endregion
|
||
|
||
#region IAopUploadRequest Members
|
||
|
||
public IDictionary<string, FileItem> GetFileParameters()
|
||
{
|
||
IDictionary<string, FileItem> parameters = new Dictionary<string, FileItem>();
|
||
parameters.Add("background", this.Background);
|
||
parameters.Add("logo", this.Logo);
|
||
return parameters;
|
||
}
|
||
|
||
#endregion
|
||
}
|
||
}
|