Class: TencentCloud::Asr::V20190614::Vocab
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Asr::V20190614::Vocab
- Defined in:
- lib/v20190614/models.rb
Overview
Instance Attribute Summary collapse
-
#CreateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#State ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TagInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UpdateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#VocabId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#WordWeights ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, description = nil, vocabid = nil, wordweights = nil, createtime = nil, updatetime = nil, state = nil, taginfos = nil) ⇒ Vocab
constructor
A new instance of Vocab.
Constructor Details
#initialize(name = nil, description = nil, vocabid = nil, wordweights = nil, createtime = nil, updatetime = nil, state = nil, taginfos = nil) ⇒ Vocab
Returns a new instance of Vocab.
2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 |
# File 'lib/v20190614/models.rb', line 2115 def initialize(name=nil, description=nil, vocabid=nil, wordweights=nil, createtime=nil, updatetime=nil, state=nil, taginfos=nil) @Name = name @Description = description @VocabId = vocabid @WordWeights = wordweights @CreateTime = createtime @UpdateTime = updatetime @State = state @TagInfos = taginfos end |
Instance Attribute Details
#CreateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def CreateTime @CreateTime end |
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def Description @Description end |
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def Name @Name end |
#State ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def State @State end |
#TagInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def TagInfos @TagInfos end |
#UpdateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def UpdateTime @UpdateTime end |
#VocabId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def VocabId @VocabId end |
#WordWeights ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2113 2114 2115 |
# File 'lib/v20190614/models.rb', line 2113 def WordWeights @WordWeights end |
Instance Method Details
#deserialize(params) ⇒ Object
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 |
# File 'lib/v20190614/models.rb', line 2126 def deserialize(params) @Name = params['Name'] @Description = params['Description'] @VocabId = params['VocabId'] unless params['WordWeights'].nil? @WordWeights = [] params['WordWeights'].each do |i| hotword_tmp = HotWord.new hotword_tmp.deserialize(i) @WordWeights << hotword_tmp end end @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] @State = params['State'] @TagInfos = params['TagInfos'] end |