Class: TencentCloud::Billing::V20180709::DescribeBillSummaryByProductResponse

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

Overview

DescribeBillSummaryByProduct返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ready = nil, summarytotal = nil, summaryoverview = nil, requestid = nil) ⇒ DescribeBillSummaryByProductResponse

Returns a new instance of DescribeBillSummaryByProductResponse.



7883
7884
7885
7886
7887
7888
# File 'lib/v20180709/models.rb', line 7883

def initialize(ready=nil, summarytotal=nil, summaryoverview=nil, requestid=nil)
  @Ready = ready
  @SummaryTotal = summarytotal
  @SummaryOverview = summaryoverview
  @RequestId = requestid
end

Instance Attribute Details

#ReadyObject

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

Parameters:

  • Ready:

    数据是否准备好,0准备中,1已就绪。(Ready=0,为当前UIN首次进行初始化出账,预计需要5~10分钟出账,请于10分钟后重试即可)

  • SummaryTotal:

    总花费详情

  • SummaryOverview:

    各产品花费分布

  • RequestId:

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



7881
7882
7883
# File 'lib/v20180709/models.rb', line 7881

def Ready
  @Ready
end

#RequestIdObject

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

Parameters:

  • Ready:

    数据是否准备好,0准备中,1已就绪。(Ready=0,为当前UIN首次进行初始化出账,预计需要5~10分钟出账,请于10分钟后重试即可)

  • SummaryTotal:

    总花费详情

  • SummaryOverview:

    各产品花费分布

  • RequestId:

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



7881
7882
7883
# File 'lib/v20180709/models.rb', line 7881

def RequestId
  @RequestId
end

#SummaryOverviewObject

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

Parameters:

  • Ready:

    数据是否准备好,0准备中,1已就绪。(Ready=0,为当前UIN首次进行初始化出账,预计需要5~10分钟出账,请于10分钟后重试即可)

  • SummaryTotal:

    总花费详情

  • SummaryOverview:

    各产品花费分布

  • RequestId:

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



7881
7882
7883
# File 'lib/v20180709/models.rb', line 7881

def SummaryOverview
  @SummaryOverview
end

#SummaryTotalObject

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

Parameters:

  • Ready:

    数据是否准备好,0准备中,1已就绪。(Ready=0,为当前UIN首次进行初始化出账,预计需要5~10分钟出账,请于10分钟后重试即可)

  • SummaryTotal:

    总花费详情

  • SummaryOverview:

    各产品花费分布

  • RequestId:

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



7881
7882
7883
# File 'lib/v20180709/models.rb', line 7881

def SummaryTotal
  @SummaryTotal
end

Instance Method Details

#deserialize(params) ⇒ Object



7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
# File 'lib/v20180709/models.rb', line 7890

def deserialize(params)
  @Ready = params['Ready']
  unless params['SummaryTotal'].nil?
    @SummaryTotal = BusinessSummaryTotal.new
    @SummaryTotal.deserialize(params['SummaryTotal'])
  end
  unless params['SummaryOverview'].nil?
    @SummaryOverview = []
    params['SummaryOverview'].each do |i|
      businesssummaryoverviewitem_tmp = BusinessSummaryOverviewItem.new
      businesssummaryoverviewitem_tmp.deserialize(i)
      @SummaryOverview << businesssummaryoverviewitem_tmp
    end
  end
  @RequestId = params['RequestId']
end