NewGaoKaoApi/PaymentSDK/AliPay/Domain/ClientInfo.cs

37 lines
970 B
C#
Raw Permalink 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>
/// ClientInfo Data Structure.
/// </summary>
[Serializable]
public class ClientInfo : AopObject
{
/// <summary>
/// 目前支持4个值 en英文 zh-Hans简体中文 zh-Hant繁体台湾 zh-HK繁体香港 默认值是zh-Hans
/// </summary>
[XmlElement("language")]
public string Language { get; set; }
/// <summary>
/// 操作系统 目前支持 ios android
/// </summary>
[XmlElement("os")]
public string Os { get; set; }
/// <summary>
/// 客户端类型,目前支持alipay,uc
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 客户端的版本号
/// </summary>
[XmlElement("version_no")]
public string VersionNo { get; set; }
}
}