Method: Caren::Employee.keys

Defined in:
lib/caren/employee.rb

.keysObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/caren/employee.rb', line 3

def self.keys
  [ :id,               # Integer (Caren id, if applicable)
    :external_id,      # String (Your employee id)
    :first_name,       # String
    :last_name,        # String
    :role,             # String
    :agb_code,         # String
    :edi_address,      # String
    :male,             # Boolean
    :care_provider_id, # Integer
    :bio,              # Text
    :photo,            # String
    :created_at,       # Datetime
    :updated_at        # Datetime
  ]
end