Class: TencentCloud::Cwp::V20180228::DescribeVertexDetailResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeVertexDetailResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeVertexDetail返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(vertexdetails = nil, requestid = nil) ⇒ DescribeVertexDetailResponse
constructor
A new instance of DescribeVertexDetailResponse.
Constructor Details
#initialize(vertexdetails = nil, requestid = nil) ⇒ DescribeVertexDetailResponse
Returns a new instance of DescribeVertexDetailResponse.
23148 23149 23150 23151 |
# File 'lib/v20180228/models.rb', line 23148 def initialize(vertexdetails=nil, requestid=nil) @VertexDetails = vertexdetails @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
23146 23147 23148 |
# File 'lib/v20180228/models.rb', line 23146 def RequestId @RequestId end |
#VertexDetails ⇒ Object
23146 23147 23148 |
# File 'lib/v20180228/models.rb', line 23146 def VertexDetails @VertexDetails end |
Instance Method Details
#deserialize(params) ⇒ Object
23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 |
# File 'lib/v20180228/models.rb', line 23153 def deserialize(params) unless params['VertexDetails'].nil? @VertexDetails = [] params['VertexDetails'].each do |i| vertexdetail_tmp = VertexDetail.new vertexdetail_tmp.deserialize(i) @VertexDetails << vertexdetail_tmp end end @RequestId = params['RequestId'] end |