Sha256: bffcd4b94de11b7ee4ad97ad1f6e6ba8fa0e4edc30fc6ba2d6868aebd4fb3e5c
Contents?: true
Size: 573 Bytes
Versions: 13
Compression:
Stored size: 573 Bytes
Contents
# frozen_string_literal: true require_relative "./representer/user" module ONEAccess module DataObject class User extend Serializable represented_by Representer::User attr_accessor :id attr_accessor :first_name attr_accessor :last_name attr_accessor :email attr_accessor :phone attr_accessor :type attr_accessor :active attr_accessor :reg_status attr_accessor :is_broker_administrator attr_accessor :organization # Instance of OrganizationLight attr_accessor :address end end end
Version data entries
13 entries across 13 versions & 1 rubygems