Sha256: 4f13672e58a21685ffe88228a1428177b24f3db56f891cb2dc3eb4fbf6e36f5a

Contents?: true

Size: 401 Bytes

Versions: 2

Compression:

Stored size: 401 Bytes

Contents

# frozen_string_literal: true

require_relative './representer/contributor'

module ONEAccess
  module DataObject
    class Contributor
      extend Serializable

      represented_by Representer::Contributor

      attr_accessor :contributor_id
      attr_accessor :contributor_name
      attr_accessor :contributor_shortname
      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/contributor.rb
oneaccess-1.3.0 lib/oneaccess/data_object/contributor.rb