Class: TencentCloud::Cme::V20191029::CMEExportInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::CMEExportInfo
- Defined in:
- lib/v20191029/models.rb
Overview
多媒体创作引擎导出信息。
Instance Attribute Summary collapse
- #ClassPath ⇒ Object
- #Description ⇒ Object
- #Name ⇒ Object
- #Owner ⇒ Object
- #TagSet ⇒ Object
- #ThirdPartyPublishInfos ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(owner = nil, name = nil, description = nil, classpath = nil, tagset = nil, thirdpartypublishinfos = nil) ⇒ CMEExportInfo
constructor
A new instance of CMEExportInfo.
Constructor Details
#initialize(owner = nil, name = nil, description = nil, classpath = nil, tagset = nil, thirdpartypublishinfos = nil) ⇒ CMEExportInfo
Returns a new instance of CMEExportInfo.
302 303 304 305 306 307 308 309 |
# File 'lib/v20191029/models.rb', line 302 def initialize(owner=nil, name=nil, description=nil, classpath=nil, =nil, thirdpartypublishinfos=nil) @Owner = owner @Name = name @Description = description @ClassPath = classpath @TagSet = @ThirdPartyPublishInfos = thirdpartypublishinfos end |
Instance Attribute Details
#ClassPath ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def ClassPath @ClassPath end |
#Description ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def Description @Description end |
#Name ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def Name @Name end |
#Owner ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def Owner @Owner end |
#TagSet ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def TagSet @TagSet end |
#ThirdPartyPublishInfos ⇒ Object
300 301 302 |
# File 'lib/v20191029/models.rb', line 300 def ThirdPartyPublishInfos @ThirdPartyPublishInfos end |
Instance Method Details
#deserialize(params) ⇒ Object
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/v20191029/models.rb', line 311 def deserialize(params) unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @Name = params['Name'] @Description = params['Description'] @ClassPath = params['ClassPath'] @TagSet = params['TagSet'] unless params['ThirdPartyPublishInfos'].nil? @ThirdPartyPublishInfos = [] params['ThirdPartyPublishInfos'].each do |i| thirdpartypublishinfo_tmp = ThirdPartyPublishInfo.new thirdpartypublishinfo_tmp.deserialize(i) @ThirdPartyPublishInfos << thirdpartypublishinfo_tmp end end end |