NewGaoKaoApi/PaymentSDK/AliPay/Domain/DefaultSettleRule.cs

25 lines
1.1 KiB
C#
Raw 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>
/// DefaultSettleRule Data Structure.
/// </summary>
[Serializable]
public class DefaultSettleRule : AopObject
{
/// <summary>
/// 默认结算目标。当默认结算类型为NONE时可不填当默认结算类型为bankCard时填写银行卡卡号其值需在进件填写的结算银行卡范围内当默认结算类型为alipayAccount时填写支付宝账号登录号其值需在进件填写的结算支付宝账号范围内。
/// </summary>
[XmlElement("default_settle_target")]
public string DefaultSettleTarget { get; set; }
/// <summary>
/// 默认结算类型可选值有NONE/bankCard/alipayAccount。NONE标识无默认结算规则设置NONE和不设置本对象效果一致bankCard表示结算到银行卡alipayAccount表示结算到支付宝账号
/// </summary>
[XmlElement("default_settle_type")]
public string DefaultSettleType { get; set; }
}
}