Class: TencentCloud::Mps::V20190612::AddOnImageInput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::AddOnImageInput
- Defined in:
- lib/v20190612/models.rb
Overview
图片处理编排中使用的输入参数。
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(image = nil) ⇒ AddOnImageInput
constructor
A new instance of AddOnImageInput.
Constructor Details
#initialize(image = nil) ⇒ AddOnImageInput
Returns a new instance of AddOnImageInput.
811 812 813 |
# File 'lib/v20190612/models.rb', line 811 def initialize(image=nil) @Image = image end |
Instance Attribute Details
#Image ⇒ Object
809 810 811 |
# File 'lib/v20190612/models.rb', line 809 def Image @Image end |
Instance Method Details
#deserialize(params) ⇒ Object
815 816 817 818 819 820 |
# File 'lib/v20190612/models.rb', line 815 def deserialize(params) unless params['Image'].nil? @Image = MediaInputInfo.new @Image.deserialize(params['Image']) end end |