Class: TencentCloud::Tcm::V20210413::DescribeMeshListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcm::V20210413::DescribeMeshListResponse
- Defined in:
- lib/v20210413/models.rb
Overview
DescribeMeshList返回参数结构体
Instance Attribute Summary collapse
-
#MeshList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(meshlist = nil, total = nil, requestid = nil) ⇒ DescribeMeshListResponse
constructor
A new instance of DescribeMeshListResponse.
Constructor Details
#initialize(meshlist = nil, total = nil, requestid = nil) ⇒ DescribeMeshListResponse
Returns a new instance of DescribeMeshListResponse.
663 664 665 666 667 |
# File 'lib/v20210413/models.rb', line 663 def initialize(meshlist=nil, total=nil, requestid=nil) @MeshList = meshlist @Total = total @RequestId = requestid end |
Instance Attribute Details
#MeshList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
661 662 663 |
# File 'lib/v20210413/models.rb', line 661 def MeshList @MeshList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
661 662 663 |
# File 'lib/v20210413/models.rb', line 661 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
661 662 663 |
# File 'lib/v20210413/models.rb', line 661 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
669 670 671 672 673 674 675 676 677 678 679 680 |
# File 'lib/v20210413/models.rb', line 669 def deserialize(params) unless params['MeshList'].nil? @MeshList = [] params['MeshList'].each do |i| mesh_tmp = Mesh.new mesh_tmp.deserialize(i) @MeshList << mesh_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |