Class: TencentCloud::Vod::V20180717::CreateWordSamplesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::CreateWordSamplesRequest
- Defined in:
- lib/v20180717/models.rb
Overview
CreateWordSamples请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(usages = nil, words = nil, subappid = nil) ⇒ CreateWordSamplesRequest
constructor
A new instance of CreateWordSamplesRequest.
Constructor Details
#initialize(usages = nil, words = nil, subappid = nil) ⇒ CreateWordSamplesRequest
Returns a new instance of CreateWordSamplesRequest.
8530 8531 8532 8533 8534 |
# File 'lib/v20180717/models.rb', line 8530 def initialize(usages=nil, words=nil, subappid=nil) @Usages = usages @Words = words @SubAppId = subappid end |
Instance Attribute Details
#SubAppId ⇒ Object
-
Recognition.Ocr:通过光学字符识别技术,进行内容识别;
-
Recognition.Asr:通过音频识别技术,进行内容识别;
-
Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;
-
Review.Asr:通过音频识别技术,进行不适宜内容识别;
可合并简写为:
-
Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
-
Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;
-
All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。
8528 8529 8530 |
# File 'lib/v20180717/models.rb', line 8528 def SubAppId @SubAppId end |
#Usages ⇒ Object
-
Recognition.Ocr:通过光学字符识别技术,进行内容识别;
-
Recognition.Asr:通过音频识别技术,进行内容识别;
-
Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;
-
Review.Asr:通过音频识别技术,进行不适宜内容识别;
可合并简写为:
-
Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
-
Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;
-
All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。
8528 8529 8530 |
# File 'lib/v20180717/models.rb', line 8528 def Usages @Usages end |
#Words ⇒ Object
-
Recognition.Ocr:通过光学字符识别技术,进行内容识别;
-
Recognition.Asr:通过音频识别技术,进行内容识别;
-
Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;
-
Review.Asr:通过音频识别技术,进行不适宜内容识别;
可合并简写为:
-
Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
-
Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;
-
All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。
8528 8529 8530 |
# File 'lib/v20180717/models.rb', line 8528 def Words @Words end |
Instance Method Details
#deserialize(params) ⇒ Object
8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 |
# File 'lib/v20180717/models.rb', line 8536 def deserialize(params) @Usages = params['Usages'] unless params['Words'].nil? @Words = [] params['Words'].each do |i| aisamplewordinfo_tmp = AiSampleWordInfo.new aisamplewordinfo_tmp.deserialize(i) @Words << aisamplewordinfo_tmp end end @SubAppId = params['SubAppId'] end |