Message returns the value of the "message" field in the mutation.
()
| 362 | |
| 363 | // Message returns the value of the "message" field in the mutation. |
| 364 | func (m *AlertMutation) Message() (r string, exists bool) { |
| 365 | v := m.message |
| 366 | if v == nil { |
| 367 | return |
| 368 | } |
| 369 | return *v, true |
| 370 | } |
| 371 | |
| 372 | // OldMessage returns the old "message" field's value of the Alert entity. |
| 373 | // If the Alert object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected