StoppedAt returns the value of the "stoppedAt" field in the mutation.
()
| 530 | |
| 531 | // StoppedAt returns the value of the "stoppedAt" field in the mutation. |
| 532 | func (m *AlertMutation) StoppedAt() (r time.Time, exists bool) { |
| 533 | v := m.stoppedAt |
| 534 | if v == nil { |
| 535 | return |
| 536 | } |
| 537 | return *v, true |
| 538 | } |
| 539 | |
| 540 | // OldStoppedAt returns the old "stoppedAt" field's value of the Alert entity. |
| 541 | // If the Alert object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected