Class: Google::Apis::GamesV1::Snapshot

Inherits:
Object
  • Object
show all
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 snapshot object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Snapshot

Returns a new instance of Snapshot.



3681
3682
3683
# File 'generated/google/apis/games_v1/classes.rb', line 3681

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

Instance Attribute Details

#cover_imageGoogle::Apis::GamesV1::SnapshotImage

This is a JSON template for an image of a snapshot. Corresponds to the JSON property coverImage



3623
3624
3625
# File 'generated/google/apis/games_v1/classes.rb', line 3623

def cover_image
  @cover_image
end

#descriptionString

The description of this snapshot. Corresponds to the JSON property description

Returns:

  • (String)


3628
3629
3630
# File 'generated/google/apis/games_v1/classes.rb', line 3628

def description
  @description
end

#drive_idString

The ID of the file underlying this snapshot in the Drive API. Only present if the snapshot is a view on a Drive file and the file is owned by the caller. Corresponds to the JSON property driveId

Returns:

  • (String)


3634
3635
3636
# File 'generated/google/apis/games_v1/classes.rb', line 3634

def drive_id
  @drive_id
end

#duration_millisFixnum

The duration associated with this snapshot, in millis. Corresponds to the JSON property durationMillis

Returns:

  • (Fixnum)


3639
3640
3641
# File 'generated/google/apis/games_v1/classes.rb', line 3639

def duration_millis
  @duration_millis
end

#idString

The ID of the snapshot. Corresponds to the JSON property id

Returns:

  • (String)


3644
3645
3646
# File 'generated/google/apis/games_v1/classes.rb', line 3644

def id
  @id
end

#kindString

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

Returns:

  • (String)


3650
3651
3652
# File 'generated/google/apis/games_v1/classes.rb', line 3650

def kind
  @kind
end

#last_modified_millisFixnum

The timestamp (in millis since Unix epoch) of the last modification to this snapshot. Corresponds to the JSON property lastModifiedMillis

Returns:

  • (Fixnum)


3656
3657
3658
# File 'generated/google/apis/games_v1/classes.rb', line 3656

def last_modified_millis
  @last_modified_millis
end

#progress_valueFixnum

The progress value (64-bit integer set by developer) associated with this snapshot. Corresponds to the JSON property progressValue

Returns:

  • (Fixnum)


3662
3663
3664
# File 'generated/google/apis/games_v1/classes.rb', line 3662

def progress_value
  @progress_value
end

#titleString

The title of this snapshot. Corresponds to the JSON property title

Returns:

  • (String)


3667
3668
3669
# File 'generated/google/apis/games_v1/classes.rb', line 3667

def title
  @title
end

#typeString

The type of this snapshot. Possible values are:

  • "SAVE_GAME" - A snapshot representing a save game. Corresponds to the JSON property type

Returns:

  • (String)


3674
3675
3676
# File 'generated/google/apis/games_v1/classes.rb', line 3674

def type
  @type
end

#unique_nameString

The unique name provided when the snapshot was created. Corresponds to the JSON property uniqueName

Returns:

  • (String)


3679
3680
3681
# File 'generated/google/apis/games_v1/classes.rb', line 3679

def unique_name
  @unique_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
# File 'generated/google/apis/games_v1/classes.rb', line 3686

def update!(**args)
  @cover_image = args[:cover_image] if args.key?(:cover_image)
  @description = args[:description] if args.key?(:description)
  @drive_id = args[:drive_id] if args.key?(:drive_id)
  @duration_millis = args[:duration_millis] if args.key?(:duration_millis)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @last_modified_millis = args[:last_modified_millis] if args.key?(:last_modified_millis)
  @progress_value = args[:progress_value] if args.key?(:progress_value)
  @title = args[:title] if args.key?(:title)
  @type = args[:type] if args.key?(:type)
  @unique_name = args[:unique_name] if args.key?(:unique_name)
end