Class: TencentCloud::Tcb::V20180608::CloudBaseCodeRepoDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::CloudBaseCodeRepoDetail
- Defined in:
- lib/v20180608/models.rb
Overview
代码仓库里 Repo的信息描述
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, url = nil) ⇒ CloudBaseCodeRepoDetail
constructor
A new instance of CloudBaseCodeRepoDetail.
Constructor Details
#initialize(name = nil, url = nil) ⇒ CloudBaseCodeRepoDetail
Returns a new instance of CloudBaseCodeRepoDetail.
444 445 446 447 |
# File 'lib/v20180608/models.rb', line 444 def initialize(name=nil, url=nil) @Name = name @Url = url end |
Instance Attribute Details
#Name ⇒ Object
442 443 444 |
# File 'lib/v20180608/models.rb', line 442 def Name @Name end |
#Url ⇒ Object
442 443 444 |
# File 'lib/v20180608/models.rb', line 442 def Url @Url end |
Instance Method Details
#deserialize(params) ⇒ Object
449 450 451 452 453 454 455 |
# File 'lib/v20180608/models.rb', line 449 def deserialize(params) unless params['Name'].nil? @Name = CloudBaseCodeRepoName.new @Name.deserialize(params['Name']) end @Url = params['Url'] end |