using System;
|
using System.Xml.Serialization;
|
using System.Collections.Generic;
|
using Top.Api;
|
|
namespace DingTalk.Api.Response
|
{
|
/// <summary>
|
/// CorpLivenessGetResponse.
|
/// </summary>
|
public class CorpLivenessGetResponse : DingTalkResponse
|
{
|
/// <summary>
|
/// result
|
/// </summary>
|
[XmlElement("result")]
|
public DingOpenResultDomain Result { get; set; }
|
|
/// <summary>
|
/// OrgLivenessVoDomain Data Structure.
|
/// </summary>
|
[Serializable]
|
|
public class OrgLivenessVoDomain : TopObject
|
{
|
/// <summary>
|
/// 活跃度,L1:不活跃,L2:低活跃,L3:中活跃,L4:高活跃,L5:超活跃
|
/// </summary>
|
[XmlElement("liveness")]
|
public string Liveness { get; set; }
|
}
|
|
/// <summary>
|
/// DingOpenResultDomain Data Structure.
|
/// </summary>
|
[Serializable]
|
|
public class DingOpenResultDomain : TopObject
|
{
|
/// <summary>
|
/// dingOpenErrcode
|
/// </summary>
|
[XmlElement("ding_open_errcode")]
|
public long DingOpenErrcode { get; set; }
|
|
/// <summary>
|
/// errorMsg
|
/// </summary>
|
[XmlElement("error_msg")]
|
public string ErrorMsg { get; set; }
|
|
/// <summary>
|
/// result
|
/// </summary>
|
[XmlElement("result")]
|
public OrgLivenessVoDomain Result { get; set; }
|
|
/// <summary>
|
/// success
|
/// </summary>
|
[XmlElement("success")]
|
public bool Success { get; set; }
|
}
|
|
}
|
}
|