Class: TencentCloud::Tcm::V20210413::DescribeMeshResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcm::V20210413::DescribeMeshResponse
- Defined in:
- lib/v20210413/models.rb
Overview
DescribeMesh返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mesh = nil, requestid = nil) ⇒ DescribeMeshResponse
constructor
A new instance of DescribeMeshResponse.
Constructor Details
#initialize(mesh = nil, requestid = nil) ⇒ DescribeMeshResponse
Returns a new instance of DescribeMeshResponse.
708 709 710 711 |
# File 'lib/v20210413/models.rb', line 708 def initialize(mesh=nil, requestid=nil) @Mesh = mesh @RequestId = requestid end |
Instance Attribute Details
#Mesh ⇒ Object
706 707 708 |
# File 'lib/v20210413/models.rb', line 706 def Mesh @Mesh end |
#RequestId ⇒ Object
706 707 708 |
# File 'lib/v20210413/models.rb', line 706 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
713 714 715 716 717 718 719 |
# File 'lib/v20210413/models.rb', line 713 def deserialize(params) unless params['Mesh'].nil? @Mesh = Mesh.new @Mesh.deserialize(params['Mesh']) end @RequestId = params['RequestId'] end |