using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiHireBizflowStartResponse. /// public class OapiHireBizflowStartResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 发起应聘流程结果 /// [XmlElement("result")] public TopStartBizFlowResultDomain Result { get; set; } /// /// TopStartBizFlowResultDomain Data Structure. /// [Serializable] public class TopStartBizFlowResultDomain : TopObject { /// /// 移动端跳转地址 /// [XmlElement("mobile_jump_url")] public string MobileJumpUrl { get; set; } /// /// pc端跳转地址 /// [XmlElement("pc_jump_url")] public string PcJumpUrl { get; set; } /// /// pc端重定向地址 /// [XmlElement("pc_redirect_url")] public string PcRedirectUrl { get; set; } } } }