Class: TencentCloud::Dlc::V20210125::DescribeOtherCHDFSBindingListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeOtherCHDFSBindingListResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeOtherCHDFSBindingList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(otherchdfsbindinglist = nil, total = nil, requestid = nil) ⇒ DescribeOtherCHDFSBindingListResponse
constructor
A new instance of DescribeOtherCHDFSBindingListResponse.
Constructor Details
#initialize(otherchdfsbindinglist = nil, total = nil, requestid = nil) ⇒ DescribeOtherCHDFSBindingListResponse
Returns a new instance of DescribeOtherCHDFSBindingListResponse.
8034 8035 8036 8037 8038 |
# File 'lib/v20210125/models.rb', line 8034 def initialize(otherchdfsbindinglist=nil, total=nil, requestid=nil) @OtherCHDFSBindingList = otherchdfsbindinglist @Total = total @RequestId = requestid end |
Instance Attribute Details
#OtherCHDFSBindingList ⇒ Object
8032 8033 8034 |
# File 'lib/v20210125/models.rb', line 8032 def OtherCHDFSBindingList @OtherCHDFSBindingList end |
#RequestId ⇒ Object
8032 8033 8034 |
# File 'lib/v20210125/models.rb', line 8032 def RequestId @RequestId end |
#Total ⇒ Object
8032 8033 8034 |
# File 'lib/v20210125/models.rb', line 8032 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 |
# File 'lib/v20210125/models.rb', line 8040 def deserialize(params) unless params['OtherCHDFSBindingList'].nil? @OtherCHDFSBindingList = [] params['OtherCHDFSBindingList'].each do |i| otherchdfsbinding_tmp = OtherCHDFSBinding.new otherchdfsbinding_tmp.deserialize(i) @OtherCHDFSBindingList << otherchdfsbinding_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |