Class: TencentCloud::Billing::V20180709::DescribeBillSummaryByProjectResponse

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

Overview

DescribeBillSummaryByProject返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ready = nil, summaryoverview = nil, requestid = nil) ⇒ DescribeBillSummaryByProjectResponse

Returns a new instance of DescribeBillSummaryByProjectResponse.



7944
7945
7946
7947
7948
# File 'lib/v20180709/models.rb', line 7944

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

Instance Attribute Details

#ReadyObject

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

Parameters:

  • Ready:

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

  • SummaryOverview:

    各项目花费分布详情

  • RequestId:

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



7942
7943
7944
# File 'lib/v20180709/models.rb', line 7942

def Ready
  @Ready
end

#RequestIdObject

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

Parameters:

  • Ready:

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

  • SummaryOverview:

    各项目花费分布详情

  • RequestId:

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



7942
7943
7944
# File 'lib/v20180709/models.rb', line 7942

def RequestId
  @RequestId
end

#SummaryOverviewObject

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

Parameters:

  • Ready:

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

  • SummaryOverview:

    各项目花费分布详情

  • RequestId:

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



7942
7943
7944
# File 'lib/v20180709/models.rb', line 7942

def SummaryOverview
  @SummaryOverview
end

Instance Method Details

#deserialize(params) ⇒ Object



7950
7951
7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
# File 'lib/v20180709/models.rb', line 7950

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