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