Class: TencentCloud::Trp::V20210515::DescribeCodeBatchByIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trp::V20210515::DescribeCodeBatchByIdResponse
- Defined in:
- lib/v20210515/models.rb
Overview
DescribeCodeBatchById返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(codebatch = nil, requestid = nil) ⇒ DescribeCodeBatchByIdResponse
constructor
A new instance of DescribeCodeBatchByIdResponse.
Constructor Details
#initialize(codebatch = nil, requestid = nil) ⇒ DescribeCodeBatchByIdResponse
Returns a new instance of DescribeCodeBatchByIdResponse.
1611 1612 1613 1614 |
# File 'lib/v20210515/models.rb', line 1611 def initialize(codebatch=nil, requestid=nil) @CodeBatch = codebatch @RequestId = requestid end |
Instance Attribute Details
#CodeBatch ⇒ Object
1609 1610 1611 |
# File 'lib/v20210515/models.rb', line 1609 def CodeBatch @CodeBatch end |
#RequestId ⇒ Object
1609 1610 1611 |
# File 'lib/v20210515/models.rb', line 1609 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1616 1617 1618 1619 1620 1621 1622 |
# File 'lib/v20210515/models.rb', line 1616 def deserialize(params) unless params['CodeBatch'].nil? @CodeBatch = CodeBatch.new @CodeBatch.deserialize(params['CodeBatch']) end @RequestId = params['RequestId'] end |