Class: TencentCloud::Cdb::V20170320::DescribeUploadedFilesResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::DescribeUploadedFilesResponse
- Defined in:
- lib/v20170320/models.rb
Overview
DescribeUploadedFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeUploadedFilesResponse
constructor
A new instance of DescribeUploadedFilesResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeUploadedFilesResponse
Returns a new instance of DescribeUploadedFilesResponse.
8770 8771 8772 8773 8774 |
# File 'lib/v20170320/models.rb', line 8770 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
8768 8769 8770 |
# File 'lib/v20170320/models.rb', line 8768 def Items @Items end |
#RequestId ⇒ Object
8768 8769 8770 |
# File 'lib/v20170320/models.rb', line 8768 def RequestId @RequestId end |
#TotalCount ⇒ Object
8768 8769 8770 |
# File 'lib/v20170320/models.rb', line 8768 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 |
# File 'lib/v20170320/models.rb', line 8776 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| sqlfileinfo_tmp = SqlFileInfo.new sqlfileinfo_tmp.deserialize(i) @Items << sqlfileinfo_tmp end end @RequestId = params['RequestId'] end |