Class: TencentCloud::Ess::V20201111::DescribeOrganizationGroupOrganizationsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeOrganizationGroupOrganizationsResponse
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeOrganizationGroupOrganizations返回参数结构体
Instance Attribute Summary collapse
- #ActivatedTotal ⇒ Object
- #ActivedTotal ⇒ Object
- #ExportUrl ⇒ Object
- #JoinedTotal ⇒ Object
- #List ⇒ Object
- #RequestId ⇒ Object
- #Total ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, joinedtotal = nil, activedtotal = nil, exporturl = nil, list = nil, activatedtotal = nil, requestid = nil) ⇒ DescribeOrganizationGroupOrganizationsResponse
constructor
A new instance of DescribeOrganizationGroupOrganizationsResponse.
Constructor Details
#initialize(total = nil, joinedtotal = nil, activedtotal = nil, exporturl = nil, list = nil, activatedtotal = nil, requestid = nil) ⇒ DescribeOrganizationGroupOrganizationsResponse
Returns a new instance of DescribeOrganizationGroupOrganizationsResponse.
11270 11271 11272 11273 11274 11275 11276 11277 11278 |
# File 'lib/v20201111/models.rb', line 11270 def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil) @Total = total @JoinedTotal = joinedtotal @ActivedTotal = activedtotal @ExportUrl = exporturl @List = list @ActivatedTotal = activatedtotal @RequestId = requestid end |
Instance Attribute Details
#ActivatedTotal ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def ActivatedTotal @ActivatedTotal end |
#ActivedTotal ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def ActivedTotal @ActivedTotal end |
#ExportUrl ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def ExportUrl @ExportUrl end |
#JoinedTotal ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def JoinedTotal @JoinedTotal end |
#List ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def List @List end |
#RequestId ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def RequestId @RequestId end |
#Total ⇒ Object
11265 11266 11267 |
# File 'lib/v20201111/models.rb', line 11265 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 |
# File 'lib/v20201111/models.rb', line 11280 def deserialize(params) @Total = params['Total'] @JoinedTotal = params['JoinedTotal'] @ActivedTotal = params['ActivedTotal'] @ExportUrl = params['ExportUrl'] unless params['List'].nil? @List = [] params['List'].each do |i| grouporganization_tmp = GroupOrganization.new grouporganization_tmp.deserialize(i) @List << grouporganization_tmp end end @ActivatedTotal = params['ActivatedTotal'] @RequestId = params['RequestId'] end |