Class: TencentCloud::Ccc::V20200210::DescribeIvrAudioListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ccc::V20200210::DescribeIvrAudioListResponse
- Defined in:
- lib/v20200210/models.rb
Overview
DescribeIvrAudioList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, fileinfo = nil, requestid = nil) ⇒ DescribeIvrAudioListResponse
constructor
A new instance of DescribeIvrAudioListResponse.
Constructor Details
#initialize(totalcount = nil, fileinfo = nil, requestid = nil) ⇒ DescribeIvrAudioListResponse
Returns a new instance of DescribeIvrAudioListResponse.
3747 3748 3749 3750 3751 |
# File 'lib/v20200210/models.rb', line 3747 def initialize(totalcount=nil, fileinfo=nil, requestid=nil) @TotalCount = totalcount @FileInfo = fileinfo @RequestId = requestid end |
Instance Attribute Details
#FileInfo ⇒ Object
3745 3746 3747 |
# File 'lib/v20200210/models.rb', line 3745 def FileInfo @FileInfo end |
#RequestId ⇒ Object
3745 3746 3747 |
# File 'lib/v20200210/models.rb', line 3745 def RequestId @RequestId end |
#TotalCount ⇒ Object
3745 3746 3747 |
# File 'lib/v20200210/models.rb', line 3745 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/v20200210/models.rb', line 3753 def deserialize(params) @TotalCount = params['TotalCount'] unless params['FileInfo'].nil? @FileInfo = [] params['FileInfo'].each do |i| audiofileinfo_tmp = AudioFileInfo.new audiofileinfo_tmp.deserialize(i) @FileInfo << audiofileinfo_tmp end end @RequestId = params['RequestId'] end |