Class: TencentCloud::Ssl::V20191205::DescribeCompaniesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeCompaniesResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeCompanies返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(companies = nil, totalcount = nil, requestid = nil) ⇒ DescribeCompaniesResponse
constructor
A new instance of DescribeCompaniesResponse.
Constructor Details
#initialize(companies = nil, totalcount = nil, requestid = nil) ⇒ DescribeCompaniesResponse
Returns a new instance of DescribeCompaniesResponse.
3955 3956 3957 3958 3959 |
# File 'lib/v20191205/models.rb', line 3955 def initialize(companies=nil, totalcount=nil, requestid=nil) @Companies = companies @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Companies ⇒ Object
3953 3954 3955 |
# File 'lib/v20191205/models.rb', line 3953 def Companies @Companies end |
#RequestId ⇒ Object
3953 3954 3955 |
# File 'lib/v20191205/models.rb', line 3953 def RequestId @RequestId end |
#TotalCount ⇒ Object
3953 3954 3955 |
# File 'lib/v20191205/models.rb', line 3953 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 |
# File 'lib/v20191205/models.rb', line 3961 def deserialize(params) unless params['Companies'].nil? @Companies = [] params['Companies'].each do |i| = CompanyInfo.new .deserialize(i) @Companies << end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |