/* * 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.Ssl.V20191205.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class SubmittedData : AbstractModel { /// /// CSR 类型,(online = 在线生成CSR,parse = 粘贴 CSR)。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("CsrType")] public string CsrType{ get; set; } /// /// CSR 内容。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("CsrContent")] public string CsrContent{ get; set; } /// /// 域名信息。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("CertificateDomain")] public string CertificateDomain{ get; set; } /// /// DNS 信息。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("DomainList")] public string[] DomainList{ get; set; } /// /// 私钥密码。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("KeyPassword")] public string KeyPassword{ get; set; } /// /// 企业或单位名称。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationName")] public string OrganizationName{ get; set; } /// /// 部门。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationDivision")] public string OrganizationDivision{ get; set; } /// /// 地址。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationAddress")] public string OrganizationAddress{ get; set; } /// /// 国家。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationCountry")] public string OrganizationCountry{ get; set; } /// /// 市。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationCity")] public string OrganizationCity{ get; set; } /// /// 省。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("OrganizationRegion")] public string OrganizationRegion{ get; set; } /// /// 邮政编码。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PostalCode")] public string PostalCode{ get; set; } /// /// 座机区号。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PhoneAreaCode")] public string PhoneAreaCode{ get; set; } /// /// 座机号码。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PhoneNumber")] public string PhoneNumber{ get; set; } /// /// 管理员名。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AdminFirstName")] public string AdminFirstName{ get; set; } /// /// 管理员姓。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AdminLastName")] public string AdminLastName{ get; set; } /// /// 管理员电话号码。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AdminPhoneNum")] public string AdminPhoneNum{ get; set; } /// /// 管理员邮箱地址。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AdminEmail")] public string AdminEmail{ get; set; } /// /// 管理员职位。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AdminPosition")] public string AdminPosition{ get; set; } /// /// 联系人名。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ContactFirstName")] public string ContactFirstName{ get; set; } /// /// 联系人姓。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ContactLastName")] public string ContactLastName{ get; set; } /// /// 联系人电话号码。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ContactNumber")] public string ContactNumber{ get; set; } /// /// 联系人邮箱地址, /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ContactEmail")] public string ContactEmail{ get; set; } /// /// 联系人职位。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ContactPosition")] public string ContactPosition{ get; set; } /// /// 验证类型。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("VerifyType")] public string VerifyType{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "CsrType", this.CsrType); this.SetParamSimple(map, prefix + "CsrContent", this.CsrContent); this.SetParamSimple(map, prefix + "CertificateDomain", this.CertificateDomain); this.SetParamArraySimple(map, prefix + "DomainList.", this.DomainList); this.SetParamSimple(map, prefix + "KeyPassword", this.KeyPassword); this.SetParamSimple(map, prefix + "OrganizationName", this.OrganizationName); this.SetParamSimple(map, prefix + "OrganizationDivision", this.OrganizationDivision); this.SetParamSimple(map, prefix + "OrganizationAddress", this.OrganizationAddress); this.SetParamSimple(map, prefix + "OrganizationCountry", this.OrganizationCountry); this.SetParamSimple(map, prefix + "OrganizationCity", this.OrganizationCity); this.SetParamSimple(map, prefix + "OrganizationRegion", this.OrganizationRegion); this.SetParamSimple(map, prefix + "PostalCode", this.PostalCode); this.SetParamSimple(map, prefix + "PhoneAreaCode", this.PhoneAreaCode); this.SetParamSimple(map, prefix + "PhoneNumber", this.PhoneNumber); this.SetParamSimple(map, prefix + "AdminFirstName", this.AdminFirstName); this.SetParamSimple(map, prefix + "AdminLastName", this.AdminLastName); this.SetParamSimple(map, prefix + "AdminPhoneNum", this.AdminPhoneNum); this.SetParamSimple(map, prefix + "AdminEmail", this.AdminEmail); this.SetParamSimple(map, prefix + "AdminPosition", this.AdminPosition); this.SetParamSimple(map, prefix + "ContactFirstName", this.ContactFirstName); this.SetParamSimple(map, prefix + "ContactLastName", this.ContactLastName); this.SetParamSimple(map, prefix + "ContactNumber", this.ContactNumber); this.SetParamSimple(map, prefix + "ContactEmail", this.ContactEmail); this.SetParamSimple(map, prefix + "ContactPosition", this.ContactPosition); this.SetParamSimple(map, prefix + "VerifyType", this.VerifyType); } } }