NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppJfexportInputfiel...

43 lines
1.3 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>
/// AlipayEbppJfexportInputfieldQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportInputfieldQueryModel : AopObject
{
/// <summary>
/// 业务类型固定传JF表示缴费
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 出账机构英文简称
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 拓展字段
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 获取场景:load加载展示渲染初始页面时的场景例如户号的输入规则query查询展示查询成功后确认页面的场景例如缴费金额的输入规则all返回包含load和query两中场景。
/// </summary>
[XmlElement("field_scene")]
public string FieldScene { get; set; }
/// <summary>
/// 子业务类型ELECTRIC-电费WATER-水费GAS-燃气费
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}