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.



474
475
476
# File 'generated/google/apis/games_management_v1management/classes.rb', line 474

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)


457
458
459
# File 'generated/google/apis/games_management_v1management/classes.rb', line 457

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)


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

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


472
473
474
# File 'generated/google/apis/games_management_v1management/classes.rb', line 472

def reset_score_time_spans
  @reset_score_time_spans
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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