using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// TemplateOpenCardConfDTO Data Structure. /// [Serializable] public class TemplateOpenCardConfDTO : AopObject { /// /// 配置,预留字段,暂时不用 /// [JsonProperty("conf")] public string Conf { get; set; } /// /// ISV:外部系统 MER:直连商户 /// [JsonProperty("open_card_source_type")] public string OpenCardSourceType { get; set; } /// /// 开卡连接,必须http、https开头 /// [JsonProperty("open_card_url")] public string OpenCardUrl { get; set; } /// /// 渠道APPID,提供领卡页面的服务提供方 /// [JsonProperty("source_app_id")] public string SourceAppId { get; set; } } }