class Pokemon::SetImages
Attributes
logo[RW]
symbol[RW]
Public Class Methods
from_json(json)
click to toggle source
# File lib/pokemon_tcg_sdk/set_images.rb, line 5 def self.from_json(json) images = SetImages.new images.symbol = json['symbol'] images.logo = json['logo'] images end