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.



38760
38761
38762
38763
# File 'lib/v20210820/models.rb', line 38760

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

Instance Attribute Details

#TaskTypeExtKeyObject

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

Parameters:

  • TaskTypeExtKey:

    TaskTypeExts的Key

  • TaskTypeExtValue:

    TaskTypeExts的Value



38758
38759
38760
# File 'lib/v20210820/models.rb', line 38758

def TaskTypeExtKey
  @TaskTypeExtKey
end

#TaskTypeExtValueObject

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

Parameters:

  • TaskTypeExtKey:

    TaskTypeExts的Key

  • TaskTypeExtValue:

    TaskTypeExts的Value



38758
38759
38760
# File 'lib/v20210820/models.rb', line 38758

def TaskTypeExtValue
  @TaskTypeExtValue
end

Instance Method Details

#deserialize(params) ⇒ Object



38765
38766
38767
38768
38769
38770
38771
# File 'lib/v20210820/models.rb', line 38765

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