Class: TencentCloud::Mps::V20190612::ImageProcessTaskOutput

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

Overview

图片处理结果信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = nil, outputstorage = nil, signedurl = nil) ⇒ ImageProcessTaskOutput

Returns a new instance of ImageProcessTaskOutput.



17811
17812
17813
17814
17815
# File 'lib/v20190612/models.rb', line 17811

def initialize(path=nil, outputstorage=nil, signedurl=nil)
  @Path = path
  @OutputStorage = outputstorage
  @SignedUrl = signedurl
end

Instance Attribute Details

#OutputStorageObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Path:

    输出文件的路径。

  • OutputStorage:

    输出文件的存储位置。

  • SignedUrl:

    输出文件的URL。



17809
17810
17811
# File 'lib/v20190612/models.rb', line 17809

def OutputStorage
  @OutputStorage
end

#PathObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Path:

    输出文件的路径。

  • OutputStorage:

    输出文件的存储位置。

  • SignedUrl:

    输出文件的URL。



17809
17810
17811
# File 'lib/v20190612/models.rb', line 17809

def Path
  @Path
end

#SignedUrlObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Path:

    输出文件的路径。

  • OutputStorage:

    输出文件的存储位置。

  • SignedUrl:

    输出文件的URL。



17809
17810
17811
# File 'lib/v20190612/models.rb', line 17809

def SignedUrl
  @SignedUrl
end

Instance Method Details

#deserialize(params) ⇒ Object



17817
17818
17819
17820
17821
17822
17823
17824
# File 'lib/v20190612/models.rb', line 17817

def deserialize(params)
  @Path = params['Path']
  unless params['OutputStorage'].nil?
    @OutputStorage = TaskOutputStorage.new
    @OutputStorage.deserialize(params['OutputStorage'])
  end
  @SignedUrl = params['SignedUrl']
end