using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// CorpEncryptionKeyListResponse.
///
public class CorpEncryptionKeyListResponse : DingTalkResponse
{
///
/// result
///
[XmlElement("result")]
public DingOpenResultDomain Result { get; set; }
///
/// DingOpenResultDomain Data Structure.
///
[Serializable]
public class DingOpenResultDomain : TopObject
{
///
/// dingOpenErrcode
///
[XmlElement("ding_open_errcode")]
public long DingOpenErrcode { get; set; }
///
/// errorMsg
///
[XmlElement("error_msg")]
public string ErrorMsg { get; set; }
///
/// result
///
[XmlElement("result")]
public string Result { get; set; }
///
/// success
///
[XmlElement("success")]
public bool Success { get; set; }
}
}
}