Class: TencentCloud::Ess::V20201111::CreateFlowRemindsResponse

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

Overview

CreateFlowReminds返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(remindflowrecords = nil, requestid = nil) ⇒ CreateFlowRemindsResponse

Returns a new instance of CreateFlowRemindsResponse.



4873
4874
4875
4876
# File 'lib/v20201111/models.rb', line 4873

def initialize(remindflowrecords=nil, requestid=nil)
  @RemindFlowRecords = remindflowrecords
  @RequestId = requestid
end

Instance Attribute Details

#RemindFlowRecordsObject

Parameters:

  • RemindFlowRecords:

    合同催办结果的详细信息列表。

  • RequestId:

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



4871
4872
4873
# File 'lib/v20201111/models.rb', line 4871

def RemindFlowRecords
  @RemindFlowRecords
end

#RequestIdObject

Parameters:

  • RemindFlowRecords:

    合同催办结果的详细信息列表。

  • RequestId:

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



4871
4872
4873
# File 'lib/v20201111/models.rb', line 4871

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
# File 'lib/v20201111/models.rb', line 4878

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