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