Class: TencentCloud::Ess::V20201111::DescribeFlowComponentsResponse

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

Overview

DescribeFlowComponents返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of DescribeFlowComponentsResponse.



10372
10373
10374
10375
# File 'lib/v20201111/models.rb', line 10372

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

Instance Attribute Details

#RecipientComponentInfosObject

Parameters:

  • RecipientComponentInfos:

    合同流程关联的填写控件信息,包括填写控件的归属方以及是否填写等内容。

  • RequestId:

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



10370
10371
10372
# File 'lib/v20201111/models.rb', line 10370

def RecipientComponentInfos
  @RecipientComponentInfos
end

#RequestIdObject

Parameters:

  • RecipientComponentInfos:

    合同流程关联的填写控件信息,包括填写控件的归属方以及是否填写等内容。

  • RequestId:

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



10370
10371
10372
# File 'lib/v20201111/models.rb', line 10370

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



10377
10378
10379
10380
10381
10382
10383
10384
10385
10386
10387
# File 'lib/v20201111/models.rb', line 10377

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