Class: Google::Apis::GamesV1::SnapshotImage
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::SnapshotImage
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/games_v1/classes.rb,
 generated/google/apis/games_v1/representations.rb,
 generated/google/apis/games_v1/representations.rb
Overview
This is a JSON template for an image of a snapshot.
Instance Attribute Summary collapse
- 
  
    
      #height  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The height of the image. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
- 
  
    
      #mime_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The MIME type of the image. 
- 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the image. 
- 
  
    
      #width  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The width of the image. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SnapshotImage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SnapshotImage. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SnapshotImage
Returns a new instance of SnapshotImage
| 4019 4020 4021 | # File 'generated/google/apis/games_v1/classes.rb', line 4019 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#height ⇒ Fixnum
The height of the image.
Corresponds to the JSON property height
| 3995 3996 3997 | # File 'generated/google/apis/games_v1/classes.rb', line 3995 def height @height end | 
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#snapshotImage.
Corresponds to the JSON property kind
| 4001 4002 4003 | # File 'generated/google/apis/games_v1/classes.rb', line 4001 def kind @kind end | 
#mime_type ⇒ String
The MIME type of the image.
Corresponds to the JSON property mime_type
| 4006 4007 4008 | # File 'generated/google/apis/games_v1/classes.rb', line 4006 def mime_type @mime_type end | 
#url ⇒ String
The URL of the image. This URL may be invalidated at any time and should not
be cached.
Corresponds to the JSON property url
| 4012 4013 4014 | # File 'generated/google/apis/games_v1/classes.rb', line 4012 def url @url end | 
#width ⇒ Fixnum
The width of the image.
Corresponds to the JSON property width
| 4017 4018 4019 | # File 'generated/google/apis/games_v1/classes.rb', line 4017 def width @width end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4024 4025 4026 4027 4028 4029 4030 | # File 'generated/google/apis/games_v1/classes.rb', line 4024 def update!(**args) @height = args[:height] if args.key?(:height) @kind = args[:kind] if args.key?(:kind) @mime_type = args[:mime_type] if args.key?(:mime_type) @url = args[:url] if args.key?(:url) @width = args[:width] if args.key?(:width) end |