Class: TencentCloud::Mps::V20190612::CreateAIAnalysisTemplateRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::CreateAIAnalysisTemplateRequest
- Defined in:
- lib/v20190612/models.rb
Overview
CreateAIAnalysisTemplate请求参数结构体
Instance Attribute Summary collapse
- #ClassificationConfigure ⇒ Object
- #Comment ⇒ Object
- #CoverConfigure ⇒ Object
- #FrameTagConfigure ⇒ Object
- #Name ⇒ Object
- #TagConfigure ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil) ⇒ CreateAIAnalysisTemplateRequest
constructor
A new instance of CreateAIAnalysisTemplateRequest.
Constructor Details
#initialize(name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil) ⇒ CreateAIAnalysisTemplateRequest
Returns a new instance of CreateAIAnalysisTemplateRequest.
7470 7471 7472 7473 7474 7475 7476 7477 |
# File 'lib/v20190612/models.rb', line 7470 def initialize(name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, =nil) @Name = name @Comment = comment @ClassificationConfigure = classificationconfigure @TagConfigure = tagconfigure @CoverConfigure = coverconfigure @FrameTagConfigure = end |
Instance Attribute Details
#ClassificationConfigure ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def ClassificationConfigure @ClassificationConfigure end |
#Comment ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def Comment @Comment end |
#CoverConfigure ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def CoverConfigure @CoverConfigure end |
#FrameTagConfigure ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def FrameTagConfigure @FrameTagConfigure end |
#Name ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def Name @Name end |
#TagConfigure ⇒ Object
7468 7469 7470 |
# File 'lib/v20190612/models.rb', line 7468 def TagConfigure @TagConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 |
# File 'lib/v20190612/models.rb', line 7479 def deserialize(params) @Name = params['Name'] @Comment = params['Comment'] unless params['ClassificationConfigure'].nil? @ClassificationConfigure = ClassificationConfigureInfo.new @ClassificationConfigure.deserialize(params['ClassificationConfigure']) end unless params['TagConfigure'].nil? @TagConfigure = TagConfigureInfo.new @TagConfigure.deserialize(params['TagConfigure']) end unless params['CoverConfigure'].nil? @CoverConfigure = CoverConfigureInfo.new @CoverConfigure.deserialize(params['CoverConfigure']) end unless params['FrameTagConfigure'].nil? @FrameTagConfigure = FrameTagConfigureInfo.new @FrameTagConfigure.deserialize(params['FrameTagConfigure']) end end |