NewGaoKaoApi/PaymentSDK/AliPay/Domain/MiniAppBaseInfoQueryRespons...

91 lines
2.4 KiB
C#
Raw Blame History

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.Domain
{
/// <summary>
/// MiniAppBaseInfoQueryResponse Data Structure.
/// </summary>
[Serializable]
public class MiniAppBaseInfoQueryResponse : AopObject
{
/// <summary>
/// 小程序应用描述
/// </summary>
[XmlElement("app_desc")]
public string AppDesc { get; set; }
/// <summary>
/// tinyapp
/// </summary>
[XmlElement("app_english_name")]
public string AppEnglishName { get; set; }
/// <summary>
/// 手淘开放平台鉴权key支付宝不需要
/// </summary>
[XmlElement("app_key")]
public string AppKey { get; set; }
/// <summary>
/// 小程序应用logo图标
/// </summary>
[XmlElement("app_logo")]
public string AppLogo { get; set; }
/// <summary>
/// 小程序名称
/// </summary>
[XmlElement("app_name")]
public string AppName { get; set; }
/// <summary>
/// 小程序简介
/// </summary>
[XmlElement("app_slogan")]
public string AppSlogan { get; set; }
/// <summary>
/// 小程序类型TINYAPP_TEMPLATETINYAPP_NORMALTINYAPP_PLUGIN
/// </summary>
[XmlElement("app_sub_type")]
public string AppSubType { get; set; }
/// <summary>
/// 小程序所属主体信息
/// </summary>
[XmlElement("dev_id")]
public string DevId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
/// <summary>
/// 小程序id
/// </summary>
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
/// <summary>
/// 应用创建来源alipay = 支付宝taobao = 淘宝
/// </summary>
[XmlElement("origin")]
public string Origin { get; set; }
/// <summary>
/// 1表示上线状态 0初始化状态 -1 下架状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}