Class: TencentCloud::Dcdb::V20180411::TableColumn

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180411/models.rb

Overview

数据库列信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(col = nil, type = nil) ⇒ TableColumn

Returns a new instance of TableColumn.



6297
6298
6299
6300
# File 'lib/v20180411/models.rb', line 6297

def initialize(col=nil, type=nil)
  @Col = col
  @Type = type
end

Instance Attribute Details

#ColObject

Parameters:

  • Col:

    列名称

  • Type:

    列类型



6295
6296
6297
# File 'lib/v20180411/models.rb', line 6295

def Col
  @Col
end

#TypeObject

Parameters:

  • Col:

    列名称

  • Type:

    列类型



6295
6296
6297
# File 'lib/v20180411/models.rb', line 6295

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



6302
6303
6304
6305
# File 'lib/v20180411/models.rb', line 6302

def deserialize(params)
  @Col = params['Col']
  @Type = params['Type']
end