NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaMerchantCreditserviceD...

24 lines
671 B
C#
Raw 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.Response
{
/// <summary>
/// ZhimaMerchantCreditserviceDetailCreateResponse.
/// </summary>
public class ZhimaMerchantCreditserviceDetailCreateResponse : AopResponse
{
/// <summary>
/// 信用服务ID是成功创建信用服务的ID。
/// </summary>
[XmlElement("credit_service_id")]
public string CreditServiceId { get; set; }
/// <summary>
/// 信用服务版本号,是成功创建信用服务的版本号。
/// </summary>
[XmlElement("version_no")]
public string VersionNo { get; set; }
}
}