Class: TencentCloud::Vod::V20180717::CreateAIAnalysisTemplateRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::CreateAIAnalysisTemplateRequest
- Defined in:
- lib/v20180717/models.rb
Overview
CreateAIAnalysisTemplate请求参数结构体
Instance Attribute Summary collapse
- #ClassificationConfigure ⇒ Object
- #Comment ⇒ Object
- #CoverConfigure ⇒ Object
- #FrameTagConfigure ⇒ Object
- #HighlightConfigure ⇒ Object
- #Name ⇒ Object
- #SubAppId ⇒ Object
- #TagConfigure ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(subappid = nil, name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil, highlightconfigure = nil) ⇒ CreateAIAnalysisTemplateRequest
constructor
A new instance of CreateAIAnalysisTemplateRequest.
Constructor Details
#initialize(subappid = nil, name = nil, comment = nil, classificationconfigure = nil, tagconfigure = nil, coverconfigure = nil, frametagconfigure = nil, highlightconfigure = nil) ⇒ CreateAIAnalysisTemplateRequest
Returns a new instance of CreateAIAnalysisTemplateRequest.
6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 |
# File 'lib/v20180717/models.rb', line 6233 def initialize(subappid=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, =nil, highlightconfigure=nil) @SubAppId = subappid @Name = name @Comment = comment @ClassificationConfigure = classificationconfigure @TagConfigure = tagconfigure @CoverConfigure = coverconfigure @FrameTagConfigure = @HighlightConfigure = highlightconfigure end |
Instance Attribute Details
#ClassificationConfigure ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def ClassificationConfigure @ClassificationConfigure end |
#Comment ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def Comment @Comment end |
#CoverConfigure ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def CoverConfigure @CoverConfigure end |
#FrameTagConfigure ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def FrameTagConfigure @FrameTagConfigure end |
#HighlightConfigure ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def HighlightConfigure @HighlightConfigure end |
#Name ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def Name @Name end |
#SubAppId ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def SubAppId @SubAppId end |
#TagConfigure ⇒ Object
6231 6232 6233 |
# File 'lib/v20180717/models.rb', line 6231 def TagConfigure @TagConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 |
# File 'lib/v20180717/models.rb', line 6244 def deserialize(params) @SubAppId = params['SubAppId'] @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 unless params['HighlightConfigure'].nil? @HighlightConfigure = HighlightsConfigureInfo.new @HighlightConfigure.deserialize(params['HighlightConfigure']) end end |