NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandScodeApply...

21 lines
556 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>
/// AntMerchantExpandScodeApplyModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandScodeApplyModel : AopObject
{
/// <summary>
/// apply_code_request申请S码的请求参数
/// </summary>
[XmlArray("apply_code_request")]
[XmlArrayItem("apply_code_request")]
public List<ApplyCodeRequest> ApplyCodeRequest { get; set; }
}
}