Class: TencentCloud::Tcb::V20180608::DescribeTableResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeTableResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeTable返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(indexes = nil, indexnum = nil, requestid = nil) ⇒ DescribeTableResponse
constructor
A new instance of DescribeTableResponse.
Constructor Details
#initialize(indexes = nil, indexnum = nil, requestid = nil) ⇒ DescribeTableResponse
Returns a new instance of DescribeTableResponse.
5979 5980 5981 5982 5983 |
# File 'lib/v20180608/models.rb', line 5979 def initialize(indexes=nil, indexnum=nil, requestid=nil) @Indexes = indexes @IndexNum = indexnum @RequestId = requestid end |
Instance Attribute Details
#Indexes ⇒ Object
5977 5978 5979 |
# File 'lib/v20180608/models.rb', line 5977 def Indexes @Indexes end |
#IndexNum ⇒ Object
5977 5978 5979 |
# File 'lib/v20180608/models.rb', line 5977 def IndexNum @IndexNum end |
#RequestId ⇒ Object
5977 5978 5979 |
# File 'lib/v20180608/models.rb', line 5977 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 |
# File 'lib/v20180608/models.rb', line 5985 def deserialize(params) unless params['Indexes'].nil? @Indexes = [] params['Indexes'].each do |i| indexinfo_tmp = IndexInfo.new indexinfo_tmp.deserialize(i) @Indexes << indexinfo_tmp end end @IndexNum = params['IndexNum'] @RequestId = params['RequestId'] end |