Class: TencentCloud::Cme::V20191029::MoveClassRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::MoveClassRequest
- Defined in:
- lib/v20191029/models.rb
Overview
MoveClass请求参数结构体
Instance Attribute Summary collapse
- #DestinationClassPath ⇒ Object
- #Operator ⇒ Object
- #Owner ⇒ Object
- #Platform ⇒ Object
- #SourceClassPath ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(platform = nil, owner = nil, sourceclasspath = nil, destinationclasspath = nil, operator = nil) ⇒ MoveClassRequest
constructor
A new instance of MoveClassRequest.
Constructor Details
#initialize(platform = nil, owner = nil, sourceclasspath = nil, destinationclasspath = nil, operator = nil) ⇒ MoveClassRequest
Returns a new instance of MoveClassRequest.
4805 4806 4807 4808 4809 4810 4811 |
# File 'lib/v20191029/models.rb', line 4805 def initialize(platform=nil, owner=nil, sourceclasspath=nil, destinationclasspath=nil, operator=nil) @Platform = platform @Owner = owner @SourceClassPath = sourceclasspath @DestinationClassPath = destinationclasspath @Operator = operator end |
Instance Attribute Details
#DestinationClassPath ⇒ Object
4803 4804 4805 |
# File 'lib/v20191029/models.rb', line 4803 def DestinationClassPath @DestinationClassPath end |
#Operator ⇒ Object
4803 4804 4805 |
# File 'lib/v20191029/models.rb', line 4803 def Operator @Operator end |
#Owner ⇒ Object
4803 4804 4805 |
# File 'lib/v20191029/models.rb', line 4803 def Owner @Owner end |
#Platform ⇒ Object
4803 4804 4805 |
# File 'lib/v20191029/models.rb', line 4803 def Platform @Platform end |
#SourceClassPath ⇒ Object
4803 4804 4805 |
# File 'lib/v20191029/models.rb', line 4803 def SourceClassPath @SourceClassPath end |
Instance Method Details
#deserialize(params) ⇒ Object
4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 |
# File 'lib/v20191029/models.rb', line 4813 def deserialize(params) @Platform = params['Platform'] unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @SourceClassPath = params['SourceClassPath'] @DestinationClassPath = params['DestinationClassPath'] @Operator = params['Operator'] end |