Class: TencentCloud::Iotcloud::V20210408::DescribeProductCAResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20210408::DescribeProductCAResponse
- Defined in:
- lib/v20210408/models.rb
Overview
DescribeProductCA返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(cas = nil, requestid = nil) ⇒ DescribeProductCAResponse
constructor
A new instance of DescribeProductCAResponse.
Constructor Details
#initialize(cas = nil, requestid = nil) ⇒ DescribeProductCAResponse
Returns a new instance of DescribeProductCAResponse.
2061 2062 2063 2064 |
# File 'lib/v20210408/models.rb', line 2061 def initialize(cas=nil, requestid=nil) @CAs = cas @RequestId = requestid end |
Instance Attribute Details
#CAs ⇒ Object
2059 2060 2061 |
# File 'lib/v20210408/models.rb', line 2059 def CAs @CAs end |
#RequestId ⇒ Object
2059 2060 2061 |
# File 'lib/v20210408/models.rb', line 2059 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 |
# File 'lib/v20210408/models.rb', line 2066 def deserialize(params) unless params['CAs'].nil? @CAs = [] params['CAs'].each do |i| certinfo_tmp = CertInfo.new certinfo_tmp.deserialize(i) @CAs << certinfo_tmp end end @RequestId = params['RequestId'] end |