using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiProjectInviteShareurlGetResponse.
///
public class OapiProjectInviteShareurlGetResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 响应结果
///
[XmlElement("result")]
public ResultDomain Result { get; set; }
///
/// 是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// ResultDomain Data Structure.
///
[Serializable]
public class ResultDomain : TopObject
{
///
/// 该二维码有效时间,以秒为单位。 最大不超过2592000(即30天)。
///
[XmlElement("expire_seconds")]
public long ExpireSeconds { get; set; }
///
/// 圈子专属链接
///
[XmlElement("h5_url_circle")]
public string H5UrlCircle { get; set; }
///
/// 群专属链接
///
[XmlElement("h5_url_group")]
public string H5UrlGroup { get; set; }
}
}
}