Sha256: b62c9b4953af207c21849efbd88157bb11df8f3231c345785876d11a2972090b
Contents?: true
Size: 541 Bytes
Versions: 10
Compression:
Stored size: 541 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Category < Base def as_json { category_id: category_id, name: name, published: published } end def category_id options['category_id'] end def name options['name'] end def published options['published'] end def group_ids options['groups'] end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems