Sha256: 080613c9fb1fae33921a9ab8f7a8367a7bd8efda12802eced5b093fac76ce512
Contents?: true
Size: 608 Bytes
Versions: 32
Compression:
Stored size: 608 Bytes
Contents
module Sportradar module Api class Soccer::Hierarchy < Data attr_accessor :response, :categories def initialize(data) @response = data set_categories end private def set_categories if response["category"] if response["category"].is_a?(Array) @categories = response["category"].map {|x| Sportradar::Api::Soccer::Category.new x } elsif response["category"].is_a?(Hash) @categories = [ Sportradar::Api::Soccer::Category.new(response["category"]) ] end end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems