Class: TencentCloud::Eb::V20210416::CheckTransformationRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::CheckTransformationRequest
- Defined in:
- lib/v20210416/models.rb
Overview
CheckTransformation请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(input = nil, transformations = nil) ⇒ CheckTransformationRequest
constructor
A new instance of CheckTransformationRequest.
Constructor Details
#initialize(input = nil, transformations = nil) ⇒ CheckTransformationRequest
85 86 87 88 |
# File 'lib/v20210416/models.rb', line 85 def initialize(input=nil, transformations=nil) @Input = input @Transformations = transformations end |
Instance Attribute Details
#Input ⇒ Object
83 84 85 |
# File 'lib/v20210416/models.rb', line 83 def Input @Input end |
#Transformations ⇒ Object
83 84 85 |
# File 'lib/v20210416/models.rb', line 83 def Transformations @Transformations end |
Instance Method Details
#deserialize(params) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/v20210416/models.rb', line 90 def deserialize(params) @Input = params['Input'] unless params['Transformations'].nil? @Transformations = [] params['Transformations'].each do |i| transformation_tmp = Transformation.new transformation_tmp.deserialize(i) @Transformations << transformation_tmp end end end |