Class: TencentCloud::Cme::V20191029::ClassInfo

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, classpath = nil) ⇒ ClassInfo

Returns a new instance of ClassInfo.



386
387
388
389
# File 'lib/v20191029/models.rb', line 386

def initialize(owner=nil, classpath=nil)
  @Owner = owner
  @ClassPath = classpath
end

Instance Attribute Details

#ClassPathObject

Parameters:

  • Owner:

    归属者。

  • ClassPath:

    分类路径。



384
385
386
# File 'lib/v20191029/models.rb', line 384

def ClassPath
  @ClassPath
end

#OwnerObject

Parameters:

  • Owner:

    归属者。

  • ClassPath:

    分类路径。



384
385
386
# File 'lib/v20191029/models.rb', line 384

def Owner
  @Owner
end

Instance Method Details

#deserialize(params) ⇒ Object



391
392
393
394
395
396
397
# File 'lib/v20191029/models.rb', line 391

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