Class: TencentCloud::Wedata::V20210820::DescribeIntegrationNodeResponse

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

Overview

DescribeIntegrationNode返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nodeinfo = nil, sourcecheckflag = nil, requestid = nil) ⇒ DescribeIntegrationNodeResponse



11529
11530
11531
11532
11533
# File 'lib/v20210820/models.rb', line 11529

def initialize(nodeinfo=nil, sourcecheckflag=nil, requestid=nil)
  @NodeInfo = nodeinfo
  @SourceCheckFlag = sourcecheckflag
  @RequestId = requestid
end

Instance Attribute Details

#NodeInfoObject

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



11527
11528
11529
# File 'lib/v20210820/models.rb', line 11527

def NodeInfo
  @NodeInfo
end

#RequestIdObject

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



11527
11528
11529
# File 'lib/v20210820/models.rb', line 11527

def RequestId
  @RequestId
end

#SourceCheckFlagObject

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



11527
11528
11529
# File 'lib/v20210820/models.rb', line 11527

def SourceCheckFlag
  @SourceCheckFlag
end

Instance Method Details

#deserialize(params) ⇒ Object



11535
11536
11537
11538
11539
11540
11541
11542
# File 'lib/v20210820/models.rb', line 11535

def deserialize(params)
  unless params['NodeInfo'].nil?
    @NodeInfo = IntegrationNodeInfo.new
    @NodeInfo.deserialize(params['NodeInfo'])
  end
  @SourceCheckFlag = params['SourceCheckFlag']
  @RequestId = params['RequestId']
end