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.

54 lines
1.7 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenPublicInfoQueryResponse.
/// </summary>
public class AlipayOpenPublicInfoQueryResponse : AopResponse
{
/// <summary>
/// 服务窗名称
/// </summary>
[XmlElement("app_name")]
public string AppName { get; set; }
/// <summary>
/// 服务窗审核状态描述,如果审核驳回则有相关的驳回理由
/// </summary>
[XmlElement("audit_desc")]
public string AuditDesc { get; set; }
/// <summary>
/// 服务窗审核状态对于系统商而言只有四个状态AUDITING审核中AUDIT_FAILED审核驳回AUDIT_SUCCESS审核通过AUDIT_NORMAL无审核状态当前没有处于审核过程的工单
/// </summary>
[XmlElement("audit_status")]
public string AuditStatus { get; set; }
/// <summary>
/// 服务窗是否上线T表示上线F表示未上线
/// </summary>
[XmlElement("is_online")]
public string IsOnline { get; set; }
/// <summary>
/// 服务窗是否上架T表示上架上架即可在支付宝客户端被搜索到F表示未上架
/// </summary>
[XmlElement("is_release")]
public string IsRelease { get; set; }
/// <summary>
/// 服务窗头像地址
/// </summary>
[XmlElement("logo_url")]
public string LogoUrl { get; set; }
/// <summary>
/// 服务窗欢迎语
/// </summary>
[XmlElement("public_greeting")]
public string PublicGreeting { get; set; }
}
}