Class: TencentCloud::Asr::V20190614::VerifyTopResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Asr::V20190614::VerifyTopResult
- Defined in:
- lib/v20190614/models.rb
Overview
说话人验证1:N返回结果
Instance Attribute Summary collapse
-
#VerifyTops ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(verifytops = nil) ⇒ VerifyTopResult
constructor
A new instance of VerifyTopResult.
Constructor Details
#initialize(verifytops = nil) ⇒ VerifyTopResult
Returns a new instance of VerifyTopResult.
2134 2135 2136 |
# File 'lib/v20190614/models.rb', line 2134 def initialize(verifytops=nil) @VerifyTops = verifytops end |
Instance Attribute Details
#VerifyTops ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2132 2133 2134 |
# File 'lib/v20190614/models.rb', line 2132 def VerifyTops @VerifyTops end |
Instance Method Details
#deserialize(params) ⇒ Object
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 |
# File 'lib/v20190614/models.rb', line 2138 def deserialize(params) unless params['VerifyTops'].nil? @VerifyTops = [] params['VerifyTops'].each do |i| verifytop_tmp = VerifyTop.new verifytop_tmp.deserialize(i) @VerifyTops << verifytop_tmp end end end |