Class: TencentCloud::Live::V20180801::DescribeAuditKeywordsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeAuditKeywordsResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeAuditKeywords返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, infos = nil, requestid = nil) ⇒ DescribeAuditKeywordsResponse
constructor
A new instance of DescribeAuditKeywordsResponse.
Constructor Details
#initialize(total = nil, infos = nil, requestid = nil) ⇒ DescribeAuditKeywordsResponse
Returns a new instance of DescribeAuditKeywordsResponse.
5322 5323 5324 5325 5326 |
# File 'lib/v20180801/models.rb', line 5322 def initialize(total=nil, infos=nil, requestid=nil) @Total = total @Infos = infos @RequestId = requestid end |
Instance Attribute Details
#Infos ⇒ Object
5320 5321 5322 |
# File 'lib/v20180801/models.rb', line 5320 def Infos @Infos end |
#RequestId ⇒ Object
5320 5321 5322 |
# File 'lib/v20180801/models.rb', line 5320 def RequestId @RequestId end |
#Total ⇒ Object
5320 5321 5322 |
# File 'lib/v20180801/models.rb', line 5320 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 |
# File 'lib/v20180801/models.rb', line 5328 def deserialize(params) @Total = params['Total'] unless params['Infos'].nil? @Infos = [] params['Infos'].each do |i| auditkeywordinfo_tmp = AuditKeywordInfo.new auditkeywordinfo_tmp.deserialize(i) @Infos << auditkeywordinfo_tmp end end @RequestId = params['RequestId'] end |