|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + * or more contributor license agreements. See the NOTICE file |
| 4 | + * distributed with this work for additional information |
| 5 | + * regarding copyright ownership. The ASF licenses this file |
| 6 | + * to you under the Apache License, Version 2.0 (the |
| 7 | + * "License"); you may not use this file except in compliance |
| 8 | + * with the License. You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, |
| 13 | + * software distributed under the License is distributed on an |
| 14 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + * KIND, either express or implied. See the License for the |
| 16 | + * specific language governing permissions and limitations |
| 17 | + * under the License. |
| 18 | + */ |
| 19 | +using System.Collections.Generic; |
| 20 | + |
| 21 | +using Aliyun.Acs.Core; |
| 22 | +using Aliyun.Acs.Core.Http; |
| 23 | +using Aliyun.Acs.Core.Transform; |
| 24 | +using Aliyun.Acs.Core.Utils; |
| 25 | +using Aliyun.Acs.lto; |
| 26 | +using Aliyun.Acs.lto.Transform; |
| 27 | +using Aliyun.Acs.lto.Transform.V20210707; |
| 28 | + |
| 29 | +namespace Aliyun.Acs.lto.Model.V20210707 |
| 30 | +{ |
| 31 | + public class AddBaaSAntChainBizChainRequest : RpcAcsRequest<AddBaaSAntChainBizChainResponse> |
| 32 | + { |
| 33 | + public AddBaaSAntChainBizChainRequest() |
| 34 | + : base("lto", "2021-07-07", "AddBaaSAntChainBizChain") |
| 35 | + { |
| 36 | + Method = MethodType.POST; |
| 37 | + } |
| 38 | + |
| 39 | + private string caCertPassword; |
| 40 | + |
| 41 | + private string nodeNameList; |
| 42 | + |
| 43 | + private string remark; |
| 44 | + |
| 45 | + private string userKey; |
| 46 | + |
| 47 | + private string clientCert; |
| 48 | + |
| 49 | + private string baaSAntChainConsortiumId; |
| 50 | + |
| 51 | + private string userKeyPassword; |
| 52 | + |
| 53 | + private string baaSAntChainChainId; |
| 54 | + |
| 55 | + private string clientKey; |
| 56 | + |
| 57 | + private string caCert; |
| 58 | + |
| 59 | + private string name; |
| 60 | + |
| 61 | + private string clientKeyPassword; |
| 62 | + |
| 63 | + private string contractTemplateIdList; |
| 64 | + |
| 65 | + private string userName; |
| 66 | + |
| 67 | + public string CaCertPassword |
| 68 | + { |
| 69 | + get |
| 70 | + { |
| 71 | + return caCertPassword; |
| 72 | + } |
| 73 | + set |
| 74 | + { |
| 75 | + caCertPassword = value; |
| 76 | + DictionaryUtil.Add(QueryParameters, "CaCertPassword", value); |
| 77 | + } |
| 78 | + } |
| 79 | + |
| 80 | + public string NodeNameList |
| 81 | + { |
| 82 | + get |
| 83 | + { |
| 84 | + return nodeNameList; |
| 85 | + } |
| 86 | + set |
| 87 | + { |
| 88 | + nodeNameList = value; |
| 89 | + DictionaryUtil.Add(QueryParameters, "NodeNameList", value); |
| 90 | + } |
| 91 | + } |
| 92 | + |
| 93 | + public string Remark |
| 94 | + { |
| 95 | + get |
| 96 | + { |
| 97 | + return remark; |
| 98 | + } |
| 99 | + set |
| 100 | + { |
| 101 | + remark = value; |
| 102 | + DictionaryUtil.Add(QueryParameters, "Remark", value); |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + public string UserKey |
| 107 | + { |
| 108 | + get |
| 109 | + { |
| 110 | + return userKey; |
| 111 | + } |
| 112 | + set |
| 113 | + { |
| 114 | + userKey = value; |
| 115 | + DictionaryUtil.Add(QueryParameters, "UserKey", value); |
| 116 | + } |
| 117 | + } |
| 118 | + |
| 119 | + public string ClientCert |
| 120 | + { |
| 121 | + get |
| 122 | + { |
| 123 | + return clientCert; |
| 124 | + } |
| 125 | + set |
| 126 | + { |
| 127 | + clientCert = value; |
| 128 | + DictionaryUtil.Add(QueryParameters, "ClientCert", value); |
| 129 | + } |
| 130 | + } |
| 131 | + |
| 132 | + public string BaaSAntChainConsortiumId |
| 133 | + { |
| 134 | + get |
| 135 | + { |
| 136 | + return baaSAntChainConsortiumId; |
| 137 | + } |
| 138 | + set |
| 139 | + { |
| 140 | + baaSAntChainConsortiumId = value; |
| 141 | + DictionaryUtil.Add(QueryParameters, "BaaSAntChainConsortiumId", value); |
| 142 | + } |
| 143 | + } |
| 144 | + |
| 145 | + public string UserKeyPassword |
| 146 | + { |
| 147 | + get |
| 148 | + { |
| 149 | + return userKeyPassword; |
| 150 | + } |
| 151 | + set |
| 152 | + { |
| 153 | + userKeyPassword = value; |
| 154 | + DictionaryUtil.Add(QueryParameters, "UserKeyPassword", value); |
| 155 | + } |
| 156 | + } |
| 157 | + |
| 158 | + public string BaaSAntChainChainId |
| 159 | + { |
| 160 | + get |
| 161 | + { |
| 162 | + return baaSAntChainChainId; |
| 163 | + } |
| 164 | + set |
| 165 | + { |
| 166 | + baaSAntChainChainId = value; |
| 167 | + DictionaryUtil.Add(QueryParameters, "BaaSAntChainChainId", value); |
| 168 | + } |
| 169 | + } |
| 170 | + |
| 171 | + public string ClientKey |
| 172 | + { |
| 173 | + get |
| 174 | + { |
| 175 | + return clientKey; |
| 176 | + } |
| 177 | + set |
| 178 | + { |
| 179 | + clientKey = value; |
| 180 | + DictionaryUtil.Add(QueryParameters, "ClientKey", value); |
| 181 | + } |
| 182 | + } |
| 183 | + |
| 184 | + public string CaCert |
| 185 | + { |
| 186 | + get |
| 187 | + { |
| 188 | + return caCert; |
| 189 | + } |
| 190 | + set |
| 191 | + { |
| 192 | + caCert = value; |
| 193 | + DictionaryUtil.Add(QueryParameters, "CaCert", value); |
| 194 | + } |
| 195 | + } |
| 196 | + |
| 197 | + public string Name |
| 198 | + { |
| 199 | + get |
| 200 | + { |
| 201 | + return name; |
| 202 | + } |
| 203 | + set |
| 204 | + { |
| 205 | + name = value; |
| 206 | + DictionaryUtil.Add(QueryParameters, "Name", value); |
| 207 | + } |
| 208 | + } |
| 209 | + |
| 210 | + public string ClientKeyPassword |
| 211 | + { |
| 212 | + get |
| 213 | + { |
| 214 | + return clientKeyPassword; |
| 215 | + } |
| 216 | + set |
| 217 | + { |
| 218 | + clientKeyPassword = value; |
| 219 | + DictionaryUtil.Add(QueryParameters, "ClientKeyPassword", value); |
| 220 | + } |
| 221 | + } |
| 222 | + |
| 223 | + public string ContractTemplateIdList |
| 224 | + { |
| 225 | + get |
| 226 | + { |
| 227 | + return contractTemplateIdList; |
| 228 | + } |
| 229 | + set |
| 230 | + { |
| 231 | + contractTemplateIdList = value; |
| 232 | + DictionaryUtil.Add(QueryParameters, "ContractTemplateIdList", value); |
| 233 | + } |
| 234 | + } |
| 235 | + |
| 236 | + public string UserName |
| 237 | + { |
| 238 | + get |
| 239 | + { |
| 240 | + return userName; |
| 241 | + } |
| 242 | + set |
| 243 | + { |
| 244 | + userName = value; |
| 245 | + DictionaryUtil.Add(QueryParameters, "UserName", value); |
| 246 | + } |
| 247 | + } |
| 248 | + |
| 249 | + public override bool CheckShowJsonItemName() |
| 250 | + { |
| 251 | + return false; |
| 252 | + } |
| 253 | + |
| 254 | + public override AddBaaSAntChainBizChainResponse GetResponse(UnmarshallerContext unmarshallerContext) |
| 255 | + { |
| 256 | + return AddBaaSAntChainBizChainResponseUnmarshaller.Unmarshall(unmarshallerContext); |
| 257 | + } |
| 258 | + } |
| 259 | +} |
0 commit comments