class MtgApi::Utilities::SetLinks
stores the links to the cards or booster of a set
Attributes
booster[RW]
the urls
cards[RW]
the urls
Public Class Methods
new(args = {})
click to toggle source
store the given values
# File lib/mtg_api/utilities/set_links.rb, line 11 def initialize(args = {}) self.cards = args[:cards] self.booster = args[:booster] end