NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicQrcodeCreat...

37 lines
1.1 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>
/// AlipayOpenPublicQrcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicQrcodeCreateModel : AopObject
{
/// <summary>
/// 服务窗创建带参二维码接口,开发者自定义信息
/// </summary>
[XmlElement("code_info")]
public CodeInfo CodeInfo { get; set; }
/// <summary>
/// 二维码类型,目前只支持两种类型: TEMP临时的默认 PERM永久的
/// </summary>
[XmlElement("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 临时码过期时间以秒为单位最大不超过1800秒 永久码置空
/// </summary>
[XmlElement("expire_second")]
public string ExpireSecond { get; set; }
/// <summary>
/// 二维码中间是否显示服务窗logoY显示N不显示默认
/// </summary>
[XmlElement("show_logo")]
public string ShowLogo { get; set; }
}
}