using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace QimenCloud.Api.sceneqimen.Response
{
///
/// TmallCloudcodeBusinessNotifyResponse.
///
public class TmallCloudcodeBusinessNotifyResponse : QimenCloudResponse
{
///
/// 错误码
///
[XmlElement("errorCode")]
public string ErrorCode { get; set; }
///
/// 错误信息
///
[XmlElement("errorMsg")]
public string ErrorMsg { get; set; }
///
/// 业务处理是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
}
}