Class: TencentCloud::Mps::V20190612::ModifyAIAnalysisTemplateRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::ModifyAIAnalysisTemplateRequest
- Defined in:
- lib/v20190612/models.rb
Overview
ModifyAIAnalysisTemplate请求参数结构体
Instance Attribute Summary collapse
- #ClassificationConfigure ⇒ Object
- #Comment ⇒ Object
- #CoverConfigure ⇒ Object
- #Definition ⇒ Object
- #FrameTagConfigure ⇒ Object
- #Name ⇒ Object
- #TagConfigure ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(definition = nil, name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil) ⇒ ModifyAIAnalysisTemplateRequest
constructor
A new instance of ModifyAIAnalysisTemplateRequest.
Constructor Details
#initialize(definition = nil, name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil) ⇒ ModifyAIAnalysisTemplateRequest
Returns a new instance of ModifyAIAnalysisTemplateRequest.
21388 21389 21390 21391 21392 21393 21394 21395 21396 |
# File 'lib/v20190612/models.rb', line 21388 def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, =nil) @Definition = definition @Name = name @Comment = comment @ClassificationConfigure = classificationconfigure @TagConfigure = tagconfigure @CoverConfigure = coverconfigure @FrameTagConfigure = end |
Instance Attribute Details
#ClassificationConfigure ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def ClassificationConfigure @ClassificationConfigure end |
#Comment ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def Comment @Comment end |
#CoverConfigure ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def CoverConfigure @CoverConfigure end |
#Definition ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def Definition @Definition end |
#FrameTagConfigure ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def FrameTagConfigure @FrameTagConfigure end |
#Name ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def Name @Name end |
#TagConfigure ⇒ Object
21386 21387 21388 |
# File 'lib/v20190612/models.rb', line 21386 def TagConfigure @TagConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 |
# File 'lib/v20190612/models.rb', line 21398 def deserialize(params) @Definition = params['Definition'] @Name = params['Name'] @Comment = params['Comment'] unless params['ClassificationConfigure'].nil? @ClassificationConfigure = ClassificationConfigureInfoForUpdate.new @ClassificationConfigure.deserialize(params['ClassificationConfigure']) end unless params['TagConfigure'].nil? @TagConfigure = TagConfigureInfoForUpdate.new @TagConfigure.deserialize(params['TagConfigure']) end unless params['CoverConfigure'].nil? @CoverConfigure = CoverConfigureInfoForUpdate.new @CoverConfigure.deserialize(params['CoverConfigure']) end unless params['FrameTagConfigure'].nil? @FrameTagConfigure = FrameTagConfigureInfoForUpdate.new @FrameTagConfigure.deserialize(params['FrameTagConfigure']) end end |