Class: TencentCloud::Chdfs::V20190718::CreateMountPointResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20190718::CreateMountPointResponse
- Defined in:
- lib/v20190718/models.rb
Overview
CreateMountPoint返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mountpoint = nil, requestid = nil) ⇒ CreateMountPointResponse
constructor
A new instance of CreateMountPointResponse.
Constructor Details
#initialize(mountpoint = nil, requestid = nil) ⇒ CreateMountPointResponse
Returns a new instance of CreateMountPointResponse.
301 302 303 304 |
# File 'lib/v20190718/models.rb', line 301 def initialize(mountpoint=nil, requestid=nil) @MountPoint = mountpoint @RequestId = requestid end |
Instance Attribute Details
#MountPoint ⇒ Object
299 300 301 |
# File 'lib/v20190718/models.rb', line 299 def MountPoint @MountPoint end |
#RequestId ⇒ Object
299 300 301 |
# File 'lib/v20190718/models.rb', line 299 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
306 307 308 309 310 311 312 |
# File 'lib/v20190718/models.rb', line 306 def deserialize(params) unless params['MountPoint'].nil? @MountPoint = MountPoint.new @MountPoint.deserialize(params['MountPoint']) end @RequestId = params['RequestId'] end |