NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContractBatchInfoOpenApiRes...

27 lines
772 B
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ContractBatchInfoOpenApiResult Data Structure.
/// </summary>
[Serializable]
public class ContractBatchInfoOpenApiResult : AopObject
{
/// <summary>
/// 批次审批状态处理中PROCESSING已拒绝REFUSE已撤销CANCEL 已通过PASS
/// </summary>
[XmlElement("approval_status")]
public string ApprovalStatus { get; set; }
/// <summary>
/// 合约信息列表
/// </summary>
[XmlArray("contract_infos")]
[XmlArrayItem("contract_info_v_o")]
public List<ContractInfoVO> ContractInfos { get; set; }
}
}