NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenPublicLifeModifyR...

24 lines
578 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>
/// AlipayOpenPublicLifeModifyResponse.
/// </summary>
public class AlipayOpenPublicLifeModifyResponse : AopResponse
{
/// <summary>
/// 修改时间。
/// </summary>
[XmlElement("modify_time")]
public string ModifyTime { get; set; }
/// <summary>
/// 生活号id用于表示此生活号唯一性
/// </summary>
[XmlElement("public_id")]
public string PublicId { get; set; }
}
}