Class: TencentCloud::Cls::V20201016::DescribeWebCallbacksResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeWebCallbacksResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeWebCallbacks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(webcallbacks = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebCallbacksResponse
constructor
A new instance of DescribeWebCallbacksResponse.
Constructor Details
#initialize(webcallbacks = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebCallbacksResponse
Returns a new instance of DescribeWebCallbacksResponse.
10317 10318 10319 10320 10321 |
# File 'lib/v20201016/models.rb', line 10317 def initialize(webcallbacks=nil, totalcount=nil, requestid=nil) @WebCallbacks = webcallbacks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
10315 10316 10317 |
# File 'lib/v20201016/models.rb', line 10315 def RequestId @RequestId end |
#TotalCount ⇒ Object
10315 10316 10317 |
# File 'lib/v20201016/models.rb', line 10315 def TotalCount @TotalCount end |
#WebCallbacks ⇒ Object
10315 10316 10317 |
# File 'lib/v20201016/models.rb', line 10315 def WebCallbacks @WebCallbacks end |
Instance Method Details
#deserialize(params) ⇒ Object
10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 |
# File 'lib/v20201016/models.rb', line 10323 def deserialize(params) unless params['WebCallbacks'].nil? @WebCallbacks = [] params['WebCallbacks'].each do |i| webcallbackinfo_tmp = WebCallbackInfo.new webcallbackinfo_tmp.deserialize(i) @WebCallbacks << webcallbackinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |