Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayOpenPublicQrcodeCreateModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicQrcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicQrcodeCreateModel : AopObject
{
/// <summary>
/// 服务窗创建带参二维码接口,开发者自定义信息
/// </summary>
[JsonProperty("code_info")]
public CodeInfo CodeInfo { get; set; }
/// <summary>
/// 二维码类型,目前只支持两种类型: TEMP临时的默认 PERM永久的
/// </summary>
[JsonProperty("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 临时码过期时间以秒为单位最大不超过1800秒 永久码置空
/// </summary>
[JsonProperty("expire_second")]
public string ExpireSecond { get; set; }
/// <summary>
/// 二维码中间是否显示服务窗logoY显示N不显示默认
/// </summary>
[JsonProperty("show_logo")]
public string ShowLogo { get; set; }
}
}