using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// ZolozAuthenticationSmilepayInitializeResponse.
///
public class ZolozAuthenticationSmilepayInitializeResponse : AopResponse
{
///
/// 返回详细码
///
[XmlElement("ret_code_sub")]
public string RetCodeSub { get; set; }
///
/// 返回详细信息
///
[XmlElement("ret_message_sub")]
public string RetMessageSub { get; set; }
///
/// ZIM上下文ID
///
[XmlElement("zim_id")]
public string ZimId { get; set; }
///
/// 客户端协议
///
[XmlElement("zim_init_client_data")]
public string ZimInitClientData { get; set; }
}
}