Class: TencentCloud::Wedata::V20210820::RecordField
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::RecordField
- Defined in:
- lib/v20210820/models.rb
Overview
通用记录字段,与服务端约定传入合法的键值对
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, value = nil) ⇒ RecordField
constructor
A new instance of RecordField.
Constructor Details
#initialize(name = nil, value = nil) ⇒ RecordField
Returns a new instance of RecordField.
30648 30649 30650 30651 |
# File 'lib/v20210820/models.rb', line 30648 def initialize(name=nil, value=nil) @Name = name @Value = value end |
Instance Attribute Details
#Name ⇒ Object
30646 30647 30648 |
# File 'lib/v20210820/models.rb', line 30646 def Name @Name end |
#Value ⇒ Object
30646 30647 30648 |
# File 'lib/v20210820/models.rb', line 30646 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
30653 30654 30655 30656 |
# File 'lib/v20210820/models.rb', line 30653 def deserialize(params) @Name = params['Name'] @Value = params['Value'] end |