Sha256: ff9dedb290515a061bfc93f7de4278e98c9060246ad809810fcee5770a4c7ae3
Contents?: true
Size: 574 Bytes
Versions: 6
Compression:
Stored size: 574 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
6 entries across 6 versions & 1 rubygems