using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PromiseConfig Data Structure. /// [Serializable] public class PromiseConfig : AopObject { /// /// 提醒用户完成行为的守约方式,可取值:promise_link(跳转到去守约页面完成守约);promise_remind(文字提醒守约)。 /// [XmlElement("action_operation_type")] public string ActionOperationType { get; set; } /// /// 提醒用户完成行为的守约方式的取值,值为去守约页面的url或者说明文案。 /// [XmlElement("action_operation_value")] public string ActionOperationValue { get; set; } /// /// 信用服务履约单买断按钮的url /// [XmlElement("button_buy")] public string ButtonBuy { get; set; } /// /// 信用服务履约单提前结束按钮的url /// [XmlElement("button_end")] public string ButtonEnd { get; set; } /// /// 信用服务履约单分期按钮的url /// [XmlElement("button_installment")] public string ButtonInstallment { get; set; } /// /// 信用服务履约单延期按钮的url /// [XmlElement("button_postpone")] public string ButtonPostpone { get; set; } /// /// 信用服务履约单维修按钮的url /// [XmlElement("button_repair")] public string ButtonRepair { get; set; } /// /// 信用服务履约单换新按钮的url /// [XmlElement("button_replace")] public string ButtonReplace { get; set; } /// /// 合约履约周期,以天为单位。 /// [XmlElement("fulfillment_days")] public long FulfillmentDays { get; set; } /// /// 商户客服电话,为必填字段,需为合法电话号码。 /// [XmlElement("merchant_service_phone")] public string MerchantServicePhone { get; set; } /// /// 商户主页链接,取值为商户小程序地址或H5页面地址。 /// [XmlElement("merchant_service_url")] public string MerchantServiceUrl { get; set; } /// /// 待还款的守约方式,可取值:promise_link(跳转到去守约页面完成守约);promise_remind(文字提醒守约)。 /// [XmlElement("money_operation_type")] public string MoneyOperationType { get; set; } /// /// 待还款守约方式的取值,值为去守约页面的url或者说明文案。 /// [XmlElement("money_operation_value")] public string MoneyOperationValue { get; set; } /// /// 待还物的守约方式,可取值:promise_link(跳转到去守约页面完成守约);promise_remind(文字提醒守约)。 /// [XmlElement("product_operation_type")] public string ProductOperationType { get; set; } /// /// 待还物守约方式的取值,值为去守约页面的url或者说明文案。 /// [XmlElement("product_operation_value")] public string ProductOperationValue { get; set; } } }