NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppIndustryBizinfoAp...

49 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>
/// AlipayEbppIndustryBizinfoApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppIndustryBizinfoApplyModel : AopObject
{
/// <summary>
/// 业务能力码,标识业务场景
/// </summary>
[XmlElement("ability_code")]
public string AbilityCode { get; set; }
/// <summary>
/// 业务账户号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务机构简称
/// </summary>
[XmlElement("biz_inst")]
public string BizInst { get; set; }
/// <summary>
/// 业务类型公服业务IND
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 外部申请流水号,支持幂等
/// </summary>
[XmlElement("out_apply_no")]
public string OutApplyNo { get; set; }
/// <summary>
/// 请求上下文json格式
/// </summary>
[XmlElement("request_context")]
public string RequestContext { get; set; }
}
}