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.
7531 7532 7533 7534 7535 7536 7537 7538 |
# File 'lib/v20190612/models.rb', line 7531 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
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def ClassificationConfigure @ClassificationConfigure end |
#Comment ⇒ Object
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def Comment @Comment end |
#CoverConfigure ⇒ Object
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def CoverConfigure @CoverConfigure end |
#FrameTagConfigure ⇒ Object
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def FrameTagConfigure @FrameTagConfigure end |
#Name ⇒ Object
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def Name @Name end |
#TagConfigure ⇒ Object
7529 7530 7531 |
# File 'lib/v20190612/models.rb', line 7529 def TagConfigure @TagConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 |
# File 'lib/v20190612/models.rb', line 7540 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 |