Class: TencentCloud::Tcb::V20180608::DescribeEnvPostpaidDeductResponse

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

Overview

DescribeEnvPostpaidDeduct返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(postpaidenvdeductinfolist = nil, requestid = nil) ⇒ DescribeEnvPostpaidDeductResponse

Returns a new instance of DescribeEnvPostpaidDeductResponse.



5122
5123
5124
5125
# File 'lib/v20180608/models.rb', line 5122

def initialize(postpaidenvdeductinfolist=nil, requestid=nil)
  @PostPaidEnvDeductInfoList = postpaidenvdeductinfolist
  @RequestId = requestid
end

Instance Attribute Details

#PostPaidEnvDeductInfoListObject

Parameters:

  • PostPaidEnvDeductInfoList:

    指标抵扣详情列表

  • RequestId:

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



5120
5121
5122
# File 'lib/v20180608/models.rb', line 5120

def PostPaidEnvDeductInfoList
  @PostPaidEnvDeductInfoList
end

#RequestIdObject

Parameters:

  • PostPaidEnvDeductInfoList:

    指标抵扣详情列表

  • RequestId:

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



5120
5121
5122
# File 'lib/v20180608/models.rb', line 5120

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
# File 'lib/v20180608/models.rb', line 5127

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