Class: TencentCloud::Eis::V20210601::GetRuntimeMCResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eis::V20210601::GetRuntimeMCResponse
- Defined in:
- lib/v20210601/models.rb
Overview
GetRuntimeMC返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(runtime = nil, requestid = nil) ⇒ GetRuntimeMCResponse
constructor
A new instance of GetRuntimeMCResponse.
Constructor Details
#initialize(runtime = nil, requestid = nil) ⇒ GetRuntimeMCResponse
111 112 113 114 |
# File 'lib/v20210601/models.rb', line 111 def initialize(runtime=nil, requestid=nil) @Runtime = runtime @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
109 110 111 |
# File 'lib/v20210601/models.rb', line 109 def RequestId @RequestId end |
#Runtime ⇒ Object
109 110 111 |
# File 'lib/v20210601/models.rb', line 109 def Runtime @Runtime end |
Instance Method Details
#deserialize(params) ⇒ Object
116 117 118 119 120 121 122 |
# File 'lib/v20210601/models.rb', line 116 def deserialize(params) unless params['Runtime'].nil? @Runtime = RuntimeMC.new @Runtime.deserialize(params['Runtime']) end @RequestId = params['RequestId'] end |