Class: TencentCloud::Cme::V20191029::ClassMovedEvent
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::ClassMovedEvent
- Defined in:
- lib/v20191029/models.rb
Overview
分类移动事件。
Instance Attribute Summary collapse
- #DestinationClassPath ⇒ Object
- #DestinationOwner ⇒ Object
- #SourceClassPathSet ⇒ Object
- #SourceOwner ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(sourceowner = nil, sourceclasspathset = nil, destinationowner = nil, destinationclasspath = nil) ⇒ ClassMovedEvent
constructor
A new instance of ClassMovedEvent.
Constructor Details
#initialize(sourceowner = nil, sourceclasspathset = nil, destinationowner = nil, destinationclasspath = nil) ⇒ ClassMovedEvent
Returns a new instance of ClassMovedEvent.
413 414 415 416 417 418 |
# File 'lib/v20191029/models.rb', line 413 def initialize(sourceowner=nil, sourceclasspathset=nil, destinationowner=nil, destinationclasspath=nil) @SourceOwner = sourceowner @SourceClassPathSet = sourceclasspathset @DestinationOwner = destinationowner @DestinationClassPath = destinationclasspath end |
Instance Attribute Details
#DestinationClassPath ⇒ Object
411 412 413 |
# File 'lib/v20191029/models.rb', line 411 def DestinationClassPath @DestinationClassPath end |
#DestinationOwner ⇒ Object
411 412 413 |
# File 'lib/v20191029/models.rb', line 411 def DestinationOwner @DestinationOwner end |
#SourceClassPathSet ⇒ Object
411 412 413 |
# File 'lib/v20191029/models.rb', line 411 def SourceClassPathSet @SourceClassPathSet end |
#SourceOwner ⇒ Object
411 412 413 |
# File 'lib/v20191029/models.rb', line 411 def SourceOwner @SourceOwner end |
Instance Method Details
#deserialize(params) ⇒ Object
420 421 422 423 424 425 426 427 428 429 430 431 |
# File 'lib/v20191029/models.rb', line 420 def deserialize(params) unless params['SourceOwner'].nil? @SourceOwner = Entity.new @SourceOwner.deserialize(params['SourceOwner']) end @SourceClassPathSet = params['SourceClassPathSet'] unless params['DestinationOwner'].nil? @DestinationOwner = Entity.new @DestinationOwner.deserialize(params['DestinationOwner']) end @DestinationClassPath = params['DestinationClassPath'] end |