NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingSearchcodeCr...

49 lines
1.4 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>
/// AlipayMarketingSearchcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingSearchcodeCreateModel : AopObject
{
/// <summary>
/// 业务标识类似于业务主键诸如pid、uid、门店id
/// </summary>
[XmlElement("biz_linked_id")]
public string BizLinkedId { get; set; }
/// <summary>
/// 搜索码的业务类型新增业务请联系PD和开发分配
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 展示在搜索码搜索后搜索box面板上banner的描述文案
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 搜索码的有效期单位s
/// </summary>
[XmlElement("timeout")]
public string Timeout { get; set; }
/// <summary>
/// 展示在搜索码搜索后box的面板上banner的标题字段
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 点击搜索box的banner后的跳转地址
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}