class ZombieBattleground::Api::Requests::GetDecksRequest
Request validator for GetDecks
Attributes
@!attribute [r] id Optionally set the Deck's id for filtered querying
@return [Integer]
@example
request.id #=> 1
@api public
@!attribute [r] limit Optionally set the limit for max Matches returned
@return [Integer]
@example
request.limit #=> 100
@api public
@!attribute [r] name Optionally set the Deck's name for filtered querying
@return [String]
@example
request.name #=> "Buzzkill"
@api public
@!attribute [r] page Optionally set the page number for filtered querying
@return [Integer]
@example
request.page #=> 1
@api public
@!attribute [r] primary_skill_id
Optionally set the Deck's primary_skill_id
for filtered querying
@return [Integer]
@example
request.primary_skill_id #=> 1
@api public
@!attribute [r] secondary_skill_id
Optionally set the Deck's secondary_skill_id
for filtered querying
@return [Integer]
@example
request.secondary_skill_id #=> 1
@api public
@!attribute [r] version Optionally set the Deck's version for filtered querying
@return [String]
@example
request.version #=> "v3"
@api public
Public Instance Methods
The URI for the endpoint
@return [String]
@example
request.uri # => "decks"
@api public
# File lib/zombie_battleground/api/requests/get_decks_request.rb, line 148 def uri 'decks' end