Class: TencentCloud::Cme::V20191029::CopyProjectRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::CopyProjectRequest
- Defined in:
- lib/v20191029/models.rb
Overview
CopyProject请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(platform = nil, projectid = nil, name = nil, owner = nil, operator = nil) ⇒ CopyProjectRequest
constructor
A new instance of CopyProjectRequest.
Constructor Details
#initialize(platform = nil, projectid = nil, name = nil, owner = nil, operator = nil) ⇒ CopyProjectRequest
Returns a new instance of CopyProjectRequest.
449 450 451 452 453 454 455 |
# File 'lib/v20191029/models.rb', line 449 def initialize(platform=nil, projectid=nil, name=nil, owner=nil, operator=nil) @Platform = platform @ProjectId = projectid @Name = name @Owner = owner @Operator = operator end |
Instance Attribute Details
#Name ⇒ Object
447 448 449 |
# File 'lib/v20191029/models.rb', line 447 def Name @Name end |
#Operator ⇒ Object
447 448 449 |
# File 'lib/v20191029/models.rb', line 447 def Operator @Operator end |
#Owner ⇒ Object
447 448 449 |
# File 'lib/v20191029/models.rb', line 447 def Owner @Owner end |
#Platform ⇒ Object
447 448 449 |
# File 'lib/v20191029/models.rb', line 447 def Platform @Platform end |
#ProjectId ⇒ Object
447 448 449 |
# File 'lib/v20191029/models.rb', line 447 def ProjectId @ProjectId end |
Instance Method Details
#deserialize(params) ⇒ Object
457 458 459 460 461 462 463 464 465 466 |
# File 'lib/v20191029/models.rb', line 457 def deserialize(params) @Platform = params['Platform'] @ProjectId = params['ProjectId'] @Name = params['Name'] unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @Operator = params['Operator'] end |