/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Organization.V20181225.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class OrgInvitation : AbstractModel
{
///
/// 邀请ID
///
[JsonProperty("Id")]
public ulong? Id{ get; set; }
///
/// 被邀请UIN
///
[JsonProperty("Uin")]
public ulong? Uin{ get; set; }
///
/// 创建者UIN
///
[JsonProperty("HostUin")]
public ulong? HostUin{ get; set; }
///
/// 创建者名称
///
[JsonProperty("HostName")]
public string HostName{ get; set; }
///
/// 创建者邮箱
///
[JsonProperty("HostMail")]
public string HostMail{ get; set; }
///
/// 邀请状态。-1:已过期,0:正常,1:已接受,2:已失效,3:已取消
///
[JsonProperty("Status")]
public ulong? Status{ get; set; }
///
/// 名称
///
[JsonProperty("Name")]
public string Name{ get; set; }
///
/// 备注
///
[JsonProperty("Remark")]
public string Remark{ get; set; }
///
/// 企业组织类型
///
[JsonProperty("OrgType")]
public ulong? OrgType{ get; set; }
///
/// 邀请时间
///
[JsonProperty("InviteTime")]
public string InviteTime{ get; set; }
///
/// 过期时间
///
[JsonProperty("ExpireTime")]
public string ExpireTime{ get; set; }
///
/// For internal usage only. DO NOT USE IT.
///
internal override void ToMap(Dictionary map, string prefix)
{
this.SetParamSimple(map, prefix + "Id", this.Id);
this.SetParamSimple(map, prefix + "Uin", this.Uin);
this.SetParamSimple(map, prefix + "HostUin", this.HostUin);
this.SetParamSimple(map, prefix + "HostName", this.HostName);
this.SetParamSimple(map, prefix + "HostMail", this.HostMail);
this.SetParamSimple(map, prefix + "Status", this.Status);
this.SetParamSimple(map, prefix + "Name", this.Name);
this.SetParamSimple(map, prefix + "Remark", this.Remark);
this.SetParamSimple(map, prefix + "OrgType", this.OrgType);
this.SetParamSimple(map, prefix + "InviteTime", this.InviteTime);
this.SetParamSimple(map, prefix + "ExpireTime", this.ExpireTime);
}
}
}