Sha256: ebbe5c99e60f98d0fabed3626f5d08536cc4e13ba1c4c777d190a7ccd8ec228d

Contents?: true

Size: 463 Bytes

Versions: 23

Compression:

Stored size: 463 Bytes

Contents

# frozen_string_literal: true

module ONEAccess
  module DataObject
    module Representer
      class CompanyLight < Representable::Decorator
        include Representable::JSON

        property :id, as: :Id, type: Integer
        property :name, as: :Name, type: String
        property :is_private, as: :IsPrivate
        property :exchange_code, as: :ExchangeCode, type: String
        property :ticker, as: :Ticker, type: String
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
oneaccess-0.1.4 lib/oneaccess/data_object/representer/company_light.rb
oneaccess-0.1.3 lib/oneaccess/data_object/representer/company_light.rb
oneaccess-0.1.2 lib/oneaccess/data_object/representer/company_light.rb