Class: TencentCloud::Wedata::V20210820::TaskTypeExtParamDsVO

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

Overview

TaskTypeExts参数

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tasktypeextkey = nil, tasktypeextvalue = nil) ⇒ TaskTypeExtParamDsVO

Returns a new instance of TaskTypeExtParamDsVO.



39127
39128
39129
39130
# File 'lib/v20210820/models.rb', line 39127

def initialize(tasktypeextkey=nil, tasktypeextvalue=nil)
  @TaskTypeExtKey = tasktypeextkey
  @TaskTypeExtValue = tasktypeextvalue
end

Instance Attribute Details

#TaskTypeExtKeyObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TaskTypeExtKey:

    TaskTypeExts的Key

  • TaskTypeExtValue:

    TaskTypeExts的Value



39125
39126
39127
# File 'lib/v20210820/models.rb', line 39125

def TaskTypeExtKey
  @TaskTypeExtKey
end

#TaskTypeExtValueObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TaskTypeExtKey:

    TaskTypeExts的Key

  • TaskTypeExtValue:

    TaskTypeExts的Value



39125
39126
39127
# File 'lib/v20210820/models.rb', line 39125

def TaskTypeExtValue
  @TaskTypeExtValue
end

Instance Method Details

#deserialize(params) ⇒ Object



39132
39133
39134
39135
39136
39137
39138
# File 'lib/v20210820/models.rb', line 39132

def deserialize(params)
  @TaskTypeExtKey = params['TaskTypeExtKey']
  unless params['TaskTypeExtValue'].nil?
    @TaskTypeExtValue = TaskTypeExtDsVO.new
    @TaskTypeExtValue.deserialize(params['TaskTypeExtValue'])
  end
end