Class: TencentCloud::Tcb::V20180608::DescribeCloudBaseProjectLatestVersionListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeCloudBaseProjectLatestVersionListResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeCloudBaseProjectLatestVersionList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeCloudBaseProjectLatestVersionListResponse
constructor
A new instance of DescribeCloudBaseProjectLatestVersionListResponse.
Constructor Details
#initialize(projectlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeCloudBaseProjectLatestVersionListResponse
Returns a new instance of DescribeCloudBaseProjectLatestVersionListResponse.
3040 3041 3042 3043 3044 |
# File 'lib/v20180608/models.rb', line 3040 def initialize(projectlist=nil, totalcount=nil, requestid=nil) @ProjectList = projectlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ProjectList ⇒ Object
3038 3039 3040 |
# File 'lib/v20180608/models.rb', line 3038 def ProjectList @ProjectList end |
#RequestId ⇒ Object
3038 3039 3040 |
# File 'lib/v20180608/models.rb', line 3038 def RequestId @RequestId end |
#TotalCount ⇒ Object
3038 3039 3040 |
# File 'lib/v20180608/models.rb', line 3038 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 |
# File 'lib/v20180608/models.rb', line 3046 def deserialize(params) unless params['ProjectList'].nil? @ProjectList = [] params['ProjectList'].each do |i| cloudbaseprojectversion_tmp = CloudBaseProjectVersion.new cloudbaseprojectversion_tmp.deserialize(i) @ProjectList << cloudbaseprojectversion_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |