Class: TencentCloud::Ccc::V20200210::DescribeIMCdrListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ccc::V20200210::DescribeIMCdrListResponse
- Defined in:
- lib/v20200210/models.rb
Overview
DescribeIMCdrList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, imcdrlist = nil, requestid = nil) ⇒ DescribeIMCdrListResponse
constructor
A new instance of DescribeIMCdrListResponse.
Constructor Details
#initialize(totalcount = nil, imcdrlist = nil, requestid = nil) ⇒ DescribeIMCdrListResponse
Returns a new instance of DescribeIMCdrListResponse.
3591 3592 3593 3594 3595 |
# File 'lib/v20200210/models.rb', line 3591 def initialize(totalcount=nil, imcdrlist=nil, requestid=nil) @TotalCount = totalcount @IMCdrList = imcdrlist @RequestId = requestid end |
Instance Attribute Details
#IMCdrList ⇒ Object
3589 3590 3591 |
# File 'lib/v20200210/models.rb', line 3589 def IMCdrList @IMCdrList end |
#RequestId ⇒ Object
3589 3590 3591 |
# File 'lib/v20200210/models.rb', line 3589 def RequestId @RequestId end |
#TotalCount ⇒ Object
3589 3590 3591 |
# File 'lib/v20200210/models.rb', line 3589 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 |
# File 'lib/v20200210/models.rb', line 3597 def deserialize(params) @TotalCount = params['TotalCount'] unless params['IMCdrList'].nil? @IMCdrList = [] params['IMCdrList'].each do |i| imcdrinfo_tmp = IMCdrInfo.new imcdrinfo_tmp.deserialize(i) @IMCdrList << imcdrinfo_tmp end end @RequestId = params['RequestId'] end |