Class: TencentCloud::Cme::V20191029::ClassDeletedEvent

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20191029/models.rb

Overview

分类删除事件。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(owner = nil, classpathset = nil) ⇒ ClassDeletedEvent

Returns a new instance of ClassDeletedEvent.



363
364
365
366
# File 'lib/v20191029/models.rb', line 363

def initialize(owner=nil, classpathset=nil)
  @Owner = owner
  @ClassPathSet = classpathset
end

Instance Attribute Details

#ClassPathSetObject

Parameters:

  • Owner:

    删除的分类归属。

  • ClassPathSet:

    删除的分类路径列表。



361
362
363
# File 'lib/v20191029/models.rb', line 361

def ClassPathSet
  @ClassPathSet
end

#OwnerObject

Parameters:

  • Owner:

    删除的分类归属。

  • ClassPathSet:

    删除的分类路径列表。



361
362
363
# File 'lib/v20191029/models.rb', line 361

def Owner
  @Owner
end

Instance Method Details

#deserialize(params) ⇒ Object



368
369
370
371
372
373
374
# File 'lib/v20191029/models.rb', line 368

def deserialize(params)
  unless params['Owner'].nil?
    @Owner = Entity.new
    @Owner.deserialize(params['Owner'])
  end
  @ClassPathSet = params['ClassPathSet']
end