Class: Google::Apis::GamesManagementV1management::PlayerScoreResetResponse

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

Overview

This is a JSON template for a list of reset leaderboard entry resources.

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) ⇒ PlayerScoreResetResponse

Returns a new instance of PlayerScoreResetResponse.



480
481
482
# File 'generated/google/apis/games_management_v1management/classes.rb', line 480

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

Instance Attribute Details

#definition_idString

The ID of an leaderboard for which player state has been updated. Corresponds to the JSON property definitionId

Returns:

  • (String)


463
464
465
# File 'generated/google/apis/games_management_v1management/classes.rb', line 463

def definition_id
  @definition_id
end

#kindString

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

Returns:

  • (String)


469
470
471
# File 'generated/google/apis/games_management_v1management/classes.rb', line 469

def kind
  @kind
end

#reset_score_time_spansArray<String>

The time spans of the updated score. Possible values are:

  • "ALL_TIME" - The score is an all-time score.
  • "WEEKLY" - The score is a weekly score.
  • "DAILY" - The score is a daily score. Corresponds to the JSON property resetScoreTimeSpans

Returns:

  • (Array<String>)


478
479
480
# File 'generated/google/apis/games_management_v1management/classes.rb', line 478

def reset_score_time_spans
  @reset_score_time_spans
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



485
486
487
488
489
# File 'generated/google/apis/games_management_v1management/classes.rb', line 485

def update!(**args)
  @definition_id = args[:definition_id] if args.key?(:definition_id)
  @kind = args[:kind] if args.key?(:kind)
  @reset_score_time_spans = args[:reset_score_time_spans] if args.key?(:reset_score_time_spans)
end