Class: TencentCloud::Tcaplusdb::V20190823::UpdateApplyResponse

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

Overview

UpdateApply返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(applyresults = nil, totalcount = nil, requestid = nil) ⇒ UpdateApplyResponse

Returns a new instance of UpdateApplyResponse.



4993
4994
4995
4996
4997
# File 'lib/v20190823/models.rb', line 4993

def initialize(applyresults=nil, totalcount=nil, requestid=nil)
  @ApplyResults = applyresults
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#ApplyResultsObject

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

Parameters:

  • ApplyResults:

    已更新的申请单列表

  • TotalCount:

    更新数量

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



4991
4992
4993
# File 'lib/v20190823/models.rb', line 4991

def ApplyResults
  @ApplyResults
end

#RequestIdObject

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

Parameters:

  • ApplyResults:

    已更新的申请单列表

  • TotalCount:

    更新数量

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



4991
4992
4993
# File 'lib/v20190823/models.rb', line 4991

def RequestId
  @RequestId
end

#TotalCountObject

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

Parameters:

  • ApplyResults:

    已更新的申请单列表

  • TotalCount:

    更新数量

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



4991
4992
4993
# File 'lib/v20190823/models.rb', line 4991

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
# File 'lib/v20190823/models.rb', line 4999

def deserialize(params)
  unless params['ApplyResults'].nil?
    @ApplyResults = []
    params['ApplyResults'].each do |i|
      applyresult_tmp = ApplyResult.new
      applyresult_tmp.deserialize(i)
      @ApplyResults << applyresult_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end