Method: OpenC3::NotificationModel#initialize
- Defined in:
- lib/openc3/models/notification_model.rb
#initialize(time:, severity:, url:, title:, body:) ⇒ NotificationModel
Returns a new instance of NotificationModel.
27 28 29 30 31 32 33 |
# File 'lib/openc3/models/notification_model.rb', line 27 def initialize(time:, severity:, url:, title:, body:) @time = time @severity = severity @url = url @title = title @body = body end |