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.
-
#avatar_storage_id ⇒ String?
The storage ID of the avatar of the person.
-
#avatar_url ⇒ String?
The URL of the avatar of the person.
-
#company ⇒ LWS::Auth::Company
The company the person belongs to.
-
#company_id ⇒ Integer
The ID of the company the person belongs to.
-
#company_name ⇒ String
The name of the company the person works for.
-
#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.
-
#location_status_change_permissions ⇒ Array<"available", "unavailable", "maintenance_cleaning", "maintenance_technical", "permanent_available", "permanent_unavailable", "permanent_maintenance_cleaning", "permanent_maintenance_technical">
The location statuses the person will clear to available on check-in.
-
#long ⇒ Float?
The exact longitude of the person’s location.
-
#name ⇒ String
The name of the person.
-
#people_responsible_for ⇒ Array<Person>
The people the person is responsible for.
-
#person_responsible ⇒ Person?
The person responsible for this person.
-
#person_responsible_id ⇒ Integer?
The ID of the person responsible for this 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?
deprecated
Deprecated.
Unauthenticated retrieval of the picture will not longer be supported in upcoming releases of LWS. Use #avatar_url instead!
-
#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
#deep_dup, #dig, #reload, #rollback, #save
Instance Attribute Details
#appointments ⇒ Array<Appointment>
444 |
# File 'lib/lws/apps/presence.rb', line 444 has_many :appointments |
#avatar_storage_id ⇒ String?
448 |
# File 'lib/lws/apps/presence.rb', line 448 attribute :avatar_storage_id |
#avatar_url ⇒ String?
To be able retrieve this, the token needs to be passed via X-Token in the HTTP request headers!
Returns the URL of the avatar of the person.
455 |
# File 'lib/lws/apps/presence.rb', line 455 attribute :avatar_url |
#company ⇒ LWS::Auth::Company
459 |
# File 'lib/lws/apps/presence.rb', line 459 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Integer
463 |
# File 'lib/lws/apps/presence.rb', line 463 attribute :company_id |
#company_name ⇒ String
This is not the name of the company the person belongs to, but possibly a guest/visitor working for another company!
Returns the name of the company the person works for.
470 |
# File 'lib/lws/apps/presence.rb', line 470 attribute :company_name |
#customer_reference ⇒ String?
474 |
# File 'lib/lws/apps/presence.rb', line 474 attribute :customer_reference |
#email ⇒ String?
478 |
# File 'lib/lws/apps/presence.rb', line 478 attribute :email |
#ero ⇒ Boolean
483 |
# File 'lib/lws/apps/presence.rb', line 483 attribute :ero |
#extra_info ⇒ String?
487 |
# File 'lib/lws/apps/presence.rb', line 487 attribute :extra_info |
#import_ref ⇒ String?
492 |
# File 'lib/lws/apps/presence.rb', line 492 attribute :import_ref |
#kind ⇒ "employee", "guest"
496 |
# File 'lib/lws/apps/presence.rb', line 496 attribute :kind |
#last_sync ⇒ String?
501 |
# File 'lib/lws/apps/presence.rb', line 501 attribute :last_sync |
#lat ⇒ Float?
505 |
# File 'lib/lws/apps/presence.rb', line 505 attribute :lat |
#location ⇒ Location
509 |
# File 'lib/lws/apps/presence.rb', line 509 belongs_to :location |
#location_ancestors_ids ⇒ Array<Integer>
514 |
# File 'lib/lws/apps/presence.rb', line 514 attribute :location_ancestor_ids |
#location_id ⇒ Integer
518 |
# File 'lib/lws/apps/presence.rb', line 518 attribute :location_id |
#location_status_change_permissions ⇒ Array<"available", "unavailable", "maintenance_cleaning", "maintenance_technical", "permanent_available", "permanent_unavailable", "permanent_maintenance_cleaning", "permanent_maintenance_technical">
526 |
# File 'lib/lws/apps/presence.rb', line 526 attribute :location_status_change_permissions |
#long ⇒ Float?
530 |
# File 'lib/lws/apps/presence.rb', line 530 attribute :long |
#name ⇒ String
534 |
# File 'lib/lws/apps/presence.rb', line 534 attribute :name |
#people_responsible_for ⇒ Array<Person>
538 |
# File 'lib/lws/apps/presence.rb', line 538 has_many :people_responsible_for, class_name: "LWS::Presence::Person" |
#person_responsible ⇒ Person?
542 543 544 |
# File 'lib/lws/apps/presence.rb', line 542 belongs_to :person_responsible, class_name: "LWS::Presence::Person", foreign_key: "person_responsible_id", uri: "people/:id" |
#person_responsible_id ⇒ Integer?
548 |
# File 'lib/lws/apps/presence.rb', line 548 attribute :person_responsible_id |
#phone_extension ⇒ String
552 |
# File 'lib/lws/apps/presence.rb', line 552 attribute :phone_extension |
#phone_fixed ⇒ String
556 |
# File 'lib/lws/apps/presence.rb', line 556 attribute :phone_fixed |
#phone_mobile ⇒ String
560 |
# File 'lib/lws/apps/presence.rb', line 560 attribute :phone_mobile |
#picture_url ⇒ String?
Unauthenticated retrieval of the picture will not longer be supported in upcoming releases of LWS. Use #avatar_url instead!
Returns the URL of the picture of the person.
567 |
# File 'lib/lws/apps/presence.rb', line 567 attribute :picture_url |
#present ⇒ Boolean
573 |
# File 'lib/lws/apps/presence.rb', line 573 attribute :present |
#rfid ⇒ String?
577 |
# File 'lib/lws/apps/presence.rb', line 577 attribute :rfid |
#status ⇒ "available", ...
582 |
# File 'lib/lws/apps/presence.rb', line 582 attribute :status |
#udid ⇒ String?
587 |
# File 'lib/lws/apps/presence.rb', line 587 attribute :udid |
#vehicle_registration_plate ⇒ String?
592 |
# File 'lib/lws/apps/presence.rb', line 592 attribute :vehicle_registration_plate |
#visibility ⇒ "public", "private"
597 |
# File 'lib/lws/apps/presence.rb', line 597 attribute :visibility |