Class: TencentCloud::Eb::V20210416::GetTransformationResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::GetTransformationResponse
- Defined in:
- lib/v20210416/models.rb
Overview
GetTransformation返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(transformations = nil, requestid = nil) ⇒ GetTransformationResponse
constructor
A new instance of GetTransformationResponse.
Constructor Details
#initialize(transformations = nil, requestid = nil) ⇒ GetTransformationResponse
Returns a new instance of GetTransformationResponse.
1356 1357 1358 1359 |
# File 'lib/v20210416/models.rb', line 1356 def initialize(transformations=nil, requestid=nil) @Transformations = transformations @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1354 1355 1356 |
# File 'lib/v20210416/models.rb', line 1354 def RequestId @RequestId end |
#Transformations ⇒ Object
1354 1355 1356 |
# File 'lib/v20210416/models.rb', line 1354 def Transformations @Transformations end |
Instance Method Details
#deserialize(params) ⇒ Object
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 |
# File 'lib/v20210416/models.rb', line 1361 def deserialize(params) unless params['Transformations'].nil? @Transformations = [] params['Transformations'].each do |i| transformation_tmp = Transformation.new transformation_tmp.deserialize(i) @Transformations << transformation_tmp end end @RequestId = params['RequestId'] end |