Method: Verizon::StatusList#initialize
- Defined in:
- lib/verizon/models/status_list.rb
#initialize(id = SKIP, status = SKIP, reason = SKIP) ⇒ StatusList
Returns a new instance of StatusList.
47 48 49 50 51 52 53 |
# File 'lib/verizon/models/status_list.rb', line 47 def initialize(id = SKIP, status = SKIP, reason = SKIP) @id = id unless id == SKIP @status = status unless status == SKIP @reason = reason unless reason == SKIP end |