Class: TencentCloud::Cls::V20201016::DescribeDlcDeliversResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeDlcDeliversResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeDlcDelivers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(infos = nil, total = nil, requestid = nil) ⇒ DescribeDlcDeliversResponse
constructor
A new instance of DescribeDlcDeliversResponse.
Constructor Details
#initialize(infos = nil, total = nil, requestid = nil) ⇒ DescribeDlcDeliversResponse
Returns a new instance of DescribeDlcDeliversResponse.
8178 8179 8180 8181 8182 |
# File 'lib/v20201016/models.rb', line 8178 def initialize(infos=nil, total=nil, requestid=nil) @Infos = infos @Total = total @RequestId = requestid end |
Instance Attribute Details
#Infos ⇒ Object
8176 8177 8178 |
# File 'lib/v20201016/models.rb', line 8176 def Infos @Infos end |
#RequestId ⇒ Object
8176 8177 8178 |
# File 'lib/v20201016/models.rb', line 8176 def RequestId @RequestId end |
#Total ⇒ Object
8176 8177 8178 |
# File 'lib/v20201016/models.rb', line 8176 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 |
# File 'lib/v20201016/models.rb', line 8184 def deserialize(params) unless params['Infos'].nil? @Infos = [] params['Infos'].each do |i| dlcdeliverinfo_tmp = DlcDeliverInfo.new dlcdeliverinfo_tmp.deserialize(i) @Infos << dlcdeliverinfo_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |