class PokeApi::Move::ContestComboSets

ContestComboSets object handling all data fetched from /move for combo_sets

Attributes

normal[R]
super[R]

Public Class Methods

new(data) click to toggle source
# File lib/poke_api/move/contest_combo_sets.rb, line 8
def initialize(data)
  @normal = ContestComboDetail.new(data[:normal])
  @super = ContestComboDetail.new(data[:super])
end