Class: TencentCloud::Vod::V20180717::ApplyUploadResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::ApplyUploadResponse
- Defined in:
- lib/v20180717/models.rb
Overview
ApplyUpload返回参数结构体
Instance Attribute Summary collapse
- #CoverStoragePath ⇒ Object
- #MediaStoragePath ⇒ Object
- #RequestId ⇒ Object
- #StorageBucket ⇒ Object
- #StorageRegion ⇒ Object
- #TempCertificate ⇒ Object
- #VodSessionKey ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(storagebucket = nil, storageregion = nil, vodsessionkey = nil, mediastoragepath = nil, coverstoragepath = nil, tempcertificate = nil, requestid = nil) ⇒ ApplyUploadResponse
constructor
A new instance of ApplyUploadResponse.
Constructor Details
#initialize(storagebucket = nil, storageregion = nil, vodsessionkey = nil, mediastoragepath = nil, coverstoragepath = nil, tempcertificate = nil, requestid = nil) ⇒ ApplyUploadResponse
Returns a new instance of ApplyUploadResponse.
4179 4180 4181 4182 4183 4184 4185 4186 4187 |
# File 'lib/v20180717/models.rb', line 4179 def initialize(storagebucket=nil, storageregion=nil, vodsessionkey=nil, mediastoragepath=nil, coverstoragepath=nil, tempcertificate=nil, requestid=nil) @StorageBucket = storagebucket @StorageRegion = storageregion @VodSessionKey = vodsessionkey @MediaStoragePath = mediastoragepath @CoverStoragePath = coverstoragepath @TempCertificate = tempcertificate @RequestId = requestid end |
Instance Attribute Details
#CoverStoragePath ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def CoverStoragePath @CoverStoragePath end |
#MediaStoragePath ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def MediaStoragePath @MediaStoragePath end |
#RequestId ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def RequestId @RequestId end |
#StorageBucket ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def StorageBucket @StorageBucket end |
#StorageRegion ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def StorageRegion @StorageRegion end |
#TempCertificate ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def TempCertificate @TempCertificate end |
#VodSessionKey ⇒ Object
4177 4178 4179 |
# File 'lib/v20180717/models.rb', line 4177 def VodSessionKey @VodSessionKey end |
Instance Method Details
#deserialize(params) ⇒ Object
4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 |
# File 'lib/v20180717/models.rb', line 4189 def deserialize(params) @StorageBucket = params['StorageBucket'] @StorageRegion = params['StorageRegion'] @VodSessionKey = params['VodSessionKey'] @MediaStoragePath = params['MediaStoragePath'] @CoverStoragePath = params['CoverStoragePath'] unless params['TempCertificate'].nil? @TempCertificate = TempCertificate.new @TempCertificate.deserialize(params['TempCertificate']) end @RequestId = params['RequestId'] end |