Sha256: f93d5fa333396fa87cc2210d0902e78ab6eeb0d3b0221aaeb69081cb06a739a7

Contents?: true

Size: 343 Bytes

Versions: 2

Compression:

Stored size: 343 Bytes

Contents

# frozen_string_literal: true

require_relative './representer/investor'

module ONEAccess
  module DataObject
    class Investor
      extend Serializable

      represented_by Representer::Investor

      attr_accessor :investor_id
      attr_accessor :investor_name
      attr_accessor :active

      alias active? active
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oneaccess-1.3.1 lib/oneaccess/data_object/investor.rb
oneaccess-1.3.0 lib/oneaccess/data_object/investor.rb