using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiWorkbenchShortcutUpdateResponse.
///
public class OapiWorkbenchShortcutUpdateResponse : DingTalkResponse
{
///
/// 服务结果码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 服务结果信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 返回结果
///
[XmlElement("result")]
public IsvOrgShortcutDtoDomain Result { get; set; }
///
/// IsvOrgShortcutDtoDomain Data Structure.
///
[Serializable]
public class IsvOrgShortcutDtoDomain : TopObject
{
///
/// 系统交互唯一流水号
///
[XmlElement("biz_no")]
public string BizNo { get; set; }
}
}
}