Class: LWS::Presence::Person
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Presence::Person
- Defined in:
- lib/lws/apps/presence.rb
Overview
The person class
Instance Attribute Summary collapse
-
#appointments ⇒ Array<Appointment>
The appointments involving the person.
-
#company ⇒ LWS::Auth::Company
The company the person belongs to.
-
#company_id ⇒ Integer
The ID of the company the person belongs to.
-
#customer_reference ⇒ String?
The customer specific reference for the person.
-
#email ⇒ String?
The email address of the person.
-
#ero ⇒ Boolean
Whether the person is emergency response ceritified.
-
#extra_info ⇒ String?
Some extra info for the person.
-
#import_ref ⇒ String?
Reference for storing the uid of the remote database.
-
#kind ⇒ "employee", "guest"
The person kind.
-
#last_sync ⇒ String?
The last date/time the status was updated via a device or RFID tag.
-
#lat ⇒ Float?
The exact latitude of the person’s location.
-
#location ⇒ Location
The location the person is located at.
-
#location_ancestors_ids ⇒ Array<Integer>
The IDs of the (nesting) locations the person is located at.
-
#location_id ⇒ Integer
The ID of the location the person is located at.
-
#long ⇒ Float?
The exact longitude of the person’s location.
-
#name ⇒ String
The name of the person.
-
#phone_extension ⇒ String
The fixed phonenumber extension of the person.
-
#phone_fixed ⇒ String
The fixed phonenumber of the person.
-
#phone_mobile ⇒ String
The mobile phonenumber of the person.
-
#picture_url ⇒ String?
The URL of the picture of the person.
-
#present ⇒ Boolean
If a person is present at a location.
-
#rfid ⇒ String?
The RFID tag ID linked to the person.
-
#status ⇒ "available", ...
The presence status of the person.
-
#udid ⇒ String?
The unique device ID (e.g. of a mobile phone) linked to the person.
-
#vehicle_registration_plate ⇒ String?
The vehicle registration plate of the persons transport.
-
#visibility ⇒ "public", "private"
If a person should be protected by not showing critical information.
Attributes inherited from Generic::Model
#created_at, #id, #updated_at, #url, #url_html
Method Summary
Methods inherited from Generic::Model
#dig, #reload, #rollback, #save
Instance Attribute Details
#appointments ⇒ Array<Appointment>
Returns the appointments involving the person.
350 |
# File 'lib/lws/apps/presence.rb', line 350 has_many :appointments |
#company ⇒ LWS::Auth::Company
Returns the company the person belongs to.
354 |
# File 'lib/lws/apps/presence.rb', line 354 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Integer
Returns the ID of the company the person belongs to.
358 |
# File 'lib/lws/apps/presence.rb', line 358 attribute :company_id |
#customer_reference ⇒ String?
Returns the customer specific reference for the person.
362 |
# File 'lib/lws/apps/presence.rb', line 362 attribute :customer_reference |
#email ⇒ String?
Returns the email address of the person.
366 |
# File 'lib/lws/apps/presence.rb', line 366 attribute :email |
#ero ⇒ Boolean
Returns whether the person is emergency response ceritified.
371 |
# File 'lib/lws/apps/presence.rb', line 371 attribute :ero |
#extra_info ⇒ String?
Returns some extra info for the person.
375 |
# File 'lib/lws/apps/presence.rb', line 375 attribute :extra_info |
#import_ref ⇒ String?
Returns reference for storing the uid of the remote database.
380 |
# File 'lib/lws/apps/presence.rb', line 380 attribute :import_ref |
#kind ⇒ "employee", "guest"
Returns the person kind.
384 |
# File 'lib/lws/apps/presence.rb', line 384 attribute :kind |
#last_sync ⇒ String?
Returns the last date/time the status was updated via a device or RFID tag.
389 |
# File 'lib/lws/apps/presence.rb', line 389 attribute :last_sync |
#lat ⇒ Float?
Returns the exact latitude of the person’s location.
393 |
# File 'lib/lws/apps/presence.rb', line 393 attribute :lat |
#location ⇒ Location
Returns the location the person is located at.
401 |
# File 'lib/lws/apps/presence.rb', line 401 belongs_to :location |
#location_ancestors_ids ⇒ Array<Integer>
Returns the IDs of the (nesting) locations the person is located at.
406 |
# File 'lib/lws/apps/presence.rb', line 406 attribute :location_ancestor_ids |
#location_id ⇒ Integer
Returns the ID of the location the person is located at.
410 |
# File 'lib/lws/apps/presence.rb', line 410 attribute :location_id |
#long ⇒ Float?
Returns the exact longitude of the person’s location.
397 |
# File 'lib/lws/apps/presence.rb', line 397 attribute :long |
#name ⇒ String
Returns the name of the person.
414 |
# File 'lib/lws/apps/presence.rb', line 414 attribute :name |
#phone_extension ⇒ String
Returns the fixed phonenumber extension of the person.
426 |
# File 'lib/lws/apps/presence.rb', line 426 attribute :phone_extension |
#phone_fixed ⇒ String
Returns the fixed phonenumber of the person.
418 |
# File 'lib/lws/apps/presence.rb', line 418 attribute :phone_fixed |
#phone_mobile ⇒ String
Returns the mobile phonenumber of the person.
422 |
# File 'lib/lws/apps/presence.rb', line 422 attribute :phone_moblie |
#picture_url ⇒ String?
Returns the URL of the picture of the person.
430 |
# File 'lib/lws/apps/presence.rb', line 430 attribute :picture_url |
#present ⇒ Boolean
Returns if a person is present at a location. It looks at the state of a person so that local state checking is not needed.
436 |
# File 'lib/lws/apps/presence.rb', line 436 attribute :present |
#rfid ⇒ String?
Returns the RFID tag ID linked to the person.
440 |
# File 'lib/lws/apps/presence.rb', line 440 attribute :rfid |
#status ⇒ "available", ...
Returns the presence status of the person.
445 |
# File 'lib/lws/apps/presence.rb', line 445 attribute :status |
#udid ⇒ String?
Returns the unique device ID (e.g. of a mobile phone) linked to the person.
450 |
# File 'lib/lws/apps/presence.rb', line 450 attribute :udid |
#vehicle_registration_plate ⇒ String?
Returns The vehicle registration plate of the persons transport.
455 |
# File 'lib/lws/apps/presence.rb', line 455 attribute :vehicle_registration_plate |
#visibility ⇒ "public", "private"
Returns if a person should be protected by not showing critical information.
460 |
# File 'lib/lws/apps/presence.rb', line 460 attribute :visibility |