using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiXiaoqianApiTestResponse.
///
public class OapiXiaoqianApiTestResponse : DingTalkResponse
{
///
/// code
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// msg
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// success
///
[XmlElement("success")]
public bool Success { get; set; }
}
}