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.
18744 18745 18746 18747 18748 18749 18750 18751 18752 |
# File 'lib/v20190612/models.rb', line 18744 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
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def ClassificationConfigure @ClassificationConfigure end |
#Comment ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def Comment @Comment end |
#CoverConfigure ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def CoverConfigure @CoverConfigure end |
#Definition ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def Definition @Definition end |
#FrameTagConfigure ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def FrameTagConfigure @FrameTagConfigure end |
#Name ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def Name @Name end |
#TagConfigure ⇒ Object
18742 18743 18744 |
# File 'lib/v20190612/models.rb', line 18742 def TagConfigure @TagConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 |
# File 'lib/v20190612/models.rb', line 18754 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 |