Class: TencentCloud::Essbasic::V20210526::ChannelDescribeFlowComponentsResponse

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

Overview

ChannelDescribeFlowComponents返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(recipientcomponentinfos = nil, requestid = nil) ⇒ ChannelDescribeFlowComponentsResponse

Returns a new instance of ChannelDescribeFlowComponentsResponse.



4148
4149
4150
4151
# File 'lib/v20210526/models.rb', line 4148

def initialize(recipientcomponentinfos=nil, requestid=nil)
  @RecipientComponentInfos = recipientcomponentinfos
  @RequestId = requestid
end

Instance Attribute Details

#RecipientComponentInfosObject

Parameters:

  • RecipientComponentInfos:

    合同填写控件信息列表,填写控件会按照参与方角色进行分类。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



4146
4147
4148
# File 'lib/v20210526/models.rb', line 4146

def RecipientComponentInfos
  @RecipientComponentInfos
end

#RequestIdObject

Parameters:

  • RecipientComponentInfos:

    合同填写控件信息列表,填写控件会按照参与方角色进行分类。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



4146
4147
4148
# File 'lib/v20210526/models.rb', line 4146

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
# File 'lib/v20210526/models.rb', line 4153

def deserialize(params)
  unless params['RecipientComponentInfos'].nil?
    @RecipientComponentInfos = []
    params['RecipientComponentInfos'].each do |i|
      recipientcomponentinfo_tmp = RecipientComponentInfo.new
      recipientcomponentinfo_tmp.deserialize(i)
      @RecipientComponentInfos << recipientcomponentinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end