Class: TencentCloud::Ssl::V20191205::TCBAccessService
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TCBAccessService
- Defined in:
- lib/v20191205/models.rb
Overview
TCB访问服务列表
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBAccessService
constructor
A new instance of TCBAccessService.
Constructor Details
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBAccessService
7248 7249 7250 7251 |
# File 'lib/v20191205/models.rb', line 7248 def initialize(instancelist=nil, totalcount=nil) @InstanceList = instancelist @TotalCount = totalcount end |
Instance Attribute Details
#InstanceList ⇒ Object
7246 7247 7248 |
# File 'lib/v20191205/models.rb', line 7246 def InstanceList @InstanceList end |
#TotalCount ⇒ Object
7246 7247 7248 |
# File 'lib/v20191205/models.rb', line 7246 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 |
# File 'lib/v20191205/models.rb', line 7253 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| tcbaccessinstance_tmp = TCBAccessInstance.new tcbaccessinstance_tmp.deserialize(i) @InstanceList << tcbaccessinstance_tmp end end @TotalCount = params['TotalCount'] end |