Class: Google::Apis::GamesManagementV1management::EventsResetMultipleForAllRequest

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

Multiple events reset all request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EventsResetMultipleForAllRequest

Returns a new instance of EventsResetMultipleForAllRequest.



134
135
136
# File 'generated/google/apis/games_management_v1management/classes.rb', line 134

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

Instance Attribute Details

#event_idsArray<String>

The IDs of events to reset. Corresponds to the JSON property event_ids

Returns:

  • (Array<String>)


126
127
128
# File 'generated/google/apis/games_management_v1management/classes.rb', line 126

def event_ids
  @event_ids
end

#kindString

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

Returns:

  • (String)


132
133
134
# File 'generated/google/apis/games_management_v1management/classes.rb', line 132

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



139
140
141
142
# File 'generated/google/apis/games_management_v1management/classes.rb', line 139

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