StartedAt returns the value of the "startedAt" field in the mutation.
()
| 481 | |
| 482 | // StartedAt returns the value of the "startedAt" field in the mutation. |
| 483 | func (m *AlertMutation) StartedAt() (r time.Time, exists bool) { |
| 484 | v := m.startedAt |
| 485 | if v == nil { |
| 486 | return |
| 487 | } |
| 488 | return *v, true |
| 489 | } |
| 490 | |
| 491 | // OldStartedAt returns the old "startedAt" field's value of the Alert entity. |
| 492 | // If the Alert object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected