NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantCreditserviceD...

25 lines
643 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;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaMerchantCreditserviceDetailQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantCreditserviceDetailQueryModel : AopObject
{
/// <summary>
/// 信用服务ID为必传字段。
/// </summary>
[XmlElement("credit_service_id")]
public string CreditServiceId { get; set; }
/// <summary>
/// 信用服务版本的版本号。
/// </summary>
[XmlElement("version_no")]
public string VersionNo { get; set; }
}
}