Class: TencentCloud::Postgres::V20170312::DescribeProductConfigResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeProductConfigResponse
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeProductConfig返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(specinfolist = nil, requestid = nil) ⇒ DescribeProductConfigResponse
constructor
A new instance of DescribeProductConfigResponse.
Constructor Details
#initialize(specinfolist = nil, requestid = nil) ⇒ DescribeProductConfigResponse
4197 4198 4199 4200 |
# File 'lib/v20170312/models.rb', line 4197 def initialize(specinfolist=nil, requestid=nil) @SpecInfoList = specinfolist @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4195 4196 4197 |
# File 'lib/v20170312/models.rb', line 4195 def RequestId @RequestId end |
#SpecInfoList ⇒ Object
4195 4196 4197 |
# File 'lib/v20170312/models.rb', line 4195 def SpecInfoList @SpecInfoList end |
Instance Method Details
#deserialize(params) ⇒ Object
4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 |
# File 'lib/v20170312/models.rb', line 4202 def deserialize(params) unless params['SpecInfoList'].nil? @SpecInfoList = [] params['SpecInfoList'].each do |i| specinfo_tmp = SpecInfo.new specinfo_tmp.deserialize(i) @SpecInfoList << specinfo_tmp end end @RequestId = params['RequestId'] end |