2023-06-14 16:35:05 +08:00
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
2021-06-04 01:10:23 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /cgi-bin/meeting/get_info 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CgibinMeetingGetInfoRequest : WechatWorkRequest
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置会议 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("meetingid")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("meetingid")]
|
2023-06-14 16:35:05 +08:00
|
|
|
public string? MeetingId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-06-15 23:12:31 +08:00
|
|
|
/// 获取或设置会议号。
|
2023-06-14 16:35:05 +08:00
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("meeting_code")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("meeting_code")]
|
|
|
|
|
public string? MeetingCode { get; set; }
|
2025-11-26 10:11:47 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置子会议 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("sub_meetingid")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_meetingid")]
|
|
|
|
|
public string? SubMeetingId { get; set; }
|
2021-06-04 01:10:23 +08:00
|
|
|
}
|
|
|
|
|
}
|