Class: TencentCloud::Tke::V20180525::GetMostSuitableImageCacheResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::GetMostSuitableImageCacheResponse
- Defined in:
- lib/v20180525/models.rb
Overview
GetMostSuitableImageCache返回参数结构体
Instance Attribute Summary collapse
-
#Found ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ImageCache ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(found = nil, imagecache = nil, requestid = nil) ⇒ GetMostSuitableImageCacheResponse
constructor
A new instance of GetMostSuitableImageCacheResponse.
Constructor Details
#initialize(found = nil, imagecache = nil, requestid = nil) ⇒ GetMostSuitableImageCacheResponse
Returns a new instance of GetMostSuitableImageCacheResponse.
12397 12398 12399 12400 12401 |
# File 'lib/v20180525/models.rb', line 12397 def initialize(found=nil, imagecache=nil, requestid=nil) @Found = found @ImageCache = imagecache @RequestId = requestid end |
Instance Attribute Details
#Found ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
12395 12396 12397 |
# File 'lib/v20180525/models.rb', line 12395 def Found @Found end |
#ImageCache ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
12395 12396 12397 |
# File 'lib/v20180525/models.rb', line 12395 def ImageCache @ImageCache end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
12395 12396 12397 |
# File 'lib/v20180525/models.rb', line 12395 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
12403 12404 12405 12406 12407 12408 12409 12410 |
# File 'lib/v20180525/models.rb', line 12403 def deserialize(params) @Found = params['Found'] unless params['ImageCache'].nil? @ImageCache = ImageCache.new @ImageCache.deserialize(params['ImageCache']) end @RequestId = params['RequestId'] end |