Sha256: 1c8047b4df4996744c52e692f7f7a8f8fd3d43c27b0c36956b49db3b18e6ff83
Contents?: true
Size: 478 Bytes
Versions: 16
Compression:
Stored size: 478 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Standing < Base def as_json { from_id: from_id, from_type: from_type, standing: standing } end def from_id options["from_id"] end def from_type options["from_type"] end def standing options["standing"] end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems