Class: Edoxen::Attendance
- Inherits:
-
Lutaml::Model::Serializable
- Object
- Lutaml::Model::Serializable
- Edoxen::Attendance
- Defined in:
- lib/edoxen/attendance.rb,
sig/edoxen.rbs
Overview
Meeting side.
Instance Attribute Summary collapse
-
#affiliation ⇒ String?
readonly
Returns the value of attribute affiliation.
-
#notes ⇒ String?
readonly
Returns the value of attribute notes.
-
#person ⇒ Person?
readonly
Returns the value of attribute person.
-
#proxy_for ⇒ Person?
readonly
Returns the value of attribute proxy_for.
-
#response ⇒ String?
readonly
Returns the value of attribute response.
-
#role ⇒ String?
readonly
Returns the value of attribute role.
-
#status ⇒ String?
readonly
Returns the value of attribute status.
Instance Method Summary collapse
Instance Attribute Details
#affiliation ⇒ String? (readonly)
Returns the value of attribute affiliation.
432 433 434 |
# File 'sig/edoxen.rbs', line 432 def affiliation @affiliation end |
#notes ⇒ String? (readonly)
Returns the value of attribute notes.
434 435 436 |
# File 'sig/edoxen.rbs', line 434 def notes @notes end |
#person ⇒ Person? (readonly)
Returns the value of attribute person.
428 429 430 |
# File 'sig/edoxen.rbs', line 428 def person @person end |
#proxy_for ⇒ Person? (readonly)
Returns the value of attribute proxy_for.
433 434 435 |
# File 'sig/edoxen.rbs', line 433 def proxy_for @proxy_for end |
#response ⇒ String? (readonly)
Returns the value of attribute response.
431 432 433 |
# File 'sig/edoxen.rbs', line 431 def response @response end |
#role ⇒ String? (readonly)
Returns the value of attribute role.
430 431 432 |
# File 'sig/edoxen.rbs', line 430 def role @role end |
#status ⇒ String? (readonly)
Returns the value of attribute status.
429 430 431 |
# File 'sig/edoxen.rbs', line 429 def status @status end |
Instance Method Details
#declined? ⇒ Boolean
25 26 27 |
# File 'lib/edoxen/attendance.rb', line 25 def declined? response == "declined" end |
#present? ⇒ Boolean
21 22 23 |
# File 'lib/edoxen/attendance.rb', line 21 def present? status == "present" end |