Class: TencentCloud::Vod::V20180717::CreateWordSamplesRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180717/models.rb

Overview

CreateWordSamples请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#SubAppIdObject

  1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;

  2. Recognition.Asr:通过音频识别技术,进行内容识别;

  3. Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;

  4. Review.Asr:通过音频识别技术,进行不适宜内容识别;

可合并简写为:

  1. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;

  2. Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;

  3. All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。

Parameters:

  • Usages: (b)

    关键词应用场景,可选值:</b>

  • Words:

    关键词,数组长度限制:100。

  • SubAppId: (b)

    点播(/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>



8528
8529
8530
# File 'lib/v20180717/models.rb', line 8528

def SubAppId
  @SubAppId
end

#UsagesObject

  1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;

  2. Recognition.Asr:通过音频识别技术,进行内容识别;

  3. Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;

  4. Review.Asr:通过音频识别技术,进行不适宜内容识别;

可合并简写为:

  1. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;

  2. Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;

  3. All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。

Parameters:

  • Usages: (b)

    关键词应用场景,可选值:</b>

  • Words:

    关键词,数组长度限制:100。

  • SubAppId: (b)

    点播(/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>



8528
8529
8530
# File 'lib/v20180717/models.rb', line 8528

def Usages
  @Usages
end

#WordsObject

  1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;

  2. Recognition.Asr:通过音频识别技术,进行内容识别;

  3. Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;

  4. Review.Asr:通过音频识别技术,进行不适宜内容识别;

可合并简写为:

  1. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;

  2. Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;

  3. All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。

Parameters:

  • Usages: (b)

    关键词应用场景,可选值:</b>

  • Words:

    关键词,数组长度限制:100。

  • SubAppId: (b)

    点播(/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>



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