NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingEncodeShortl...

31 lines
1.0 KiB
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>
/// AlipayMarketingEncodeShortlinkCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingEncodeShortlinkCreateModel : AopObject
{
/// <summary>
/// biz_identifier通过向mobilecodec系统申请由mobilecodec系统分配每个调用者一般指一个商家会有一个唯一值。
/// </summary>
[XmlElement("biz_identifier")]
public string BizIdentifier { get; set; }
/// <summary>
/// encode_url 是需要改写成短连接的长连接需要urlEncode
/// </summary>
[XmlElement("encode_url")]
public string EncodeUrl { get; set; }
/// <summary>
/// 单个短连接有效期,不填是配置申请时默认的值,可以小于等于配置申请时的值,但不能大于,否则会返回配置不一致错误
/// </summary>
[XmlElement("timeout")]
public string Timeout { get; set; }
}
}