Class: TencentCloud::Wedata::V20210820::KVPair
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::KVPair
- Defined in:
- lib/v20210820/models.rb
Overview
键值对
Instance Attribute Summary collapse
-
#K ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#V ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(k = nil, v = nil) ⇒ KVPair
constructor
A new instance of KVPair.
Constructor Details
#initialize(k = nil, v = nil) ⇒ KVPair
Returns a new instance of KVPair.
24300 24301 24302 24303 |
# File 'lib/v20210820/models.rb', line 24300 def initialize(k=nil, v=nil) @K = k @V = v end |
Instance Attribute Details
#K ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
24298 24299 24300 |
# File 'lib/v20210820/models.rb', line 24298 def K @K end |
#V ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
24298 24299 24300 |
# File 'lib/v20210820/models.rb', line 24298 def V @V end |
Instance Method Details
#deserialize(params) ⇒ Object
24305 24306 24307 24308 |
# File 'lib/v20210820/models.rb', line 24305 def deserialize(params) @K = params['K'] @V = params['V'] end |