using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// WakandaAicameraResponse.
///
public class WakandaAicameraResponse : TopResponse
{
///
/// 返回信息
///
[XmlElement("result")]
public GetDeviceSecretFacadeDomain Result { get; set; }
///
/// GetDeviceSecretFacadeDomain Data Structure.
///
[Serializable]
public class GetDeviceSecretFacadeDomain : TopObject
{
///
/// 描述
///
[XmlElement("data")]
public string Data { get; set; }
///
/// 错误码
///
[XmlElement("err_code")]
public long ErrCode { get; set; }
///
/// 错误信息
///
[XmlElement("err_msg")]
public string ErrMsg { get; set; }
///
/// 成功状态
///
[XmlElement("success")]
public string Success { get; set; }
///
/// 时间戳
///
[XmlElement("ts")]
public long Ts { get; set; }
}
}
}