using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiImpaasUserAddprofileResponse.
///
public class OapiImpaasUserAddprofileResponse : DingTalkResponse
{
///
/// dingOpenErrcode
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// errorMsg
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// result
///
[XmlElement("result")]
public AddProfileRespDomain Result { get; set; }
///
/// success
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// AddProfileRespDomain Data Structure.
///
[Serializable]
public class AddProfileRespDomain : TopObject
{
///
/// imOpenId
///
[XmlElement("im_openid")]
public string ImOpenid { get; set; }
}
}
}