NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateOpenCardConfDTO.cs

45 lines
1.2 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// TemplateOpenCardConfDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateOpenCardConfDTO : AopObject
{
/// <summary>
/// 领卡权益信息
/// </summary>
[XmlArray("card_rights")]
[XmlArrayItem("template_rights_content_d_t_o")]
public List<TemplateRightsContentDTO> CardRights { get; set; }
/// <summary>
/// 配置,预留字段,暂时不用
/// </summary>
[XmlElement("conf")]
public string Conf { get; set; }
/// <summary>
/// ISV外部系统 MER直连商户
/// </summary>
[XmlElement("open_card_source_type")]
public string OpenCardSourceType { get; set; }
/// <summary>
/// 开卡连接必须http、https开头
/// </summary>
[XmlElement("open_card_url")]
public string OpenCardUrl { get; set; }
/// <summary>
/// 渠道APPID提供领卡页面的服务提供方
/// </summary>
[XmlElement("source_app_id")]
public string SourceAppId { get; set; }
}
}