初始提交
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayMobilePublicInfoQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayMobilePublicInfoQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务窗名称
|
||||
/// </summary>
|
||||
[JsonProperty("app_name")]
|
||||
public string AppName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗审核状态描述,如果审核驳回则有相关的驳回理由
|
||||
/// </summary>
|
||||
[JsonProperty("audit_desc")]
|
||||
public string AuditDesc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗审核状态,对于系统商而言,只有三个状态,AUDITING:审核中,AUDIT_FAILED:审核驳回,AUDIT_SUCCESS:审核通过
|
||||
/// </summary>
|
||||
[JsonProperty("audit_status")]
|
||||
public string AuditStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗是否上线,T表示上线,F表示未上线
|
||||
/// </summary>
|
||||
[JsonProperty("is_online")]
|
||||
public string IsOnline { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗是否上架,T表示上架,上架即可在支付宝客户端被搜索到,F表示未上架
|
||||
/// </summary>
|
||||
[JsonProperty("is_release")]
|
||||
public string IsRelease { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗头像地址
|
||||
/// </summary>
|
||||
[JsonProperty("logo_url")]
|
||||
public string LogoUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务窗欢迎语
|
||||
/// </summary>
|
||||
[JsonProperty("public_greeting")]
|
||||
public string PublicGreeting { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user