Class: Google::Apis::GamesV1::SnapshotImage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/games_v1/classes.rb,
lib/google/apis/games_v1/representations.rb,
lib/google/apis/games_v1/representations.rb

Overview

An image of a snapshot.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SnapshotImage

Returns a new instance of SnapshotImage.



2712
2713
2714
# File 'lib/google/apis/games_v1/classes.rb', line 2712

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#heightFixnum

The height of the image. Corresponds to the JSON property height

Returns:

  • (Fixnum)


2688
2689
2690
# File 'lib/google/apis/games_v1/classes.rb', line 2688

def height
  @height
end

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#snapshotImage. Corresponds to the JSON property kind

Returns:

  • (String)


2694
2695
2696
# File 'lib/google/apis/games_v1/classes.rb', line 2694

def kind
  @kind
end

#mime_typeString

The MIME type of the image. Corresponds to the JSON property mime_type

Returns:

  • (String)


2699
2700
2701
# File 'lib/google/apis/games_v1/classes.rb', line 2699

def mime_type
  @mime_type
end

#urlString

The URL of the image. This URL may be invalidated at any time and should not be cached. Corresponds to the JSON property url

Returns:

  • (String)


2705
2706
2707
# File 'lib/google/apis/games_v1/classes.rb', line 2705

def url
  @url
end

#widthFixnum

The width of the image. Corresponds to the JSON property width

Returns:

  • (Fixnum)


2710
2711
2712
# File 'lib/google/apis/games_v1/classes.rb', line 2710

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2717
2718
2719
2720
2721
2722
2723
# File 'lib/google/apis/games_v1/classes.rb', line 2717

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