Time returns the value of the "time" field in the mutation.
()
| 7924 | |
| 7925 | // Time returns the value of the "time" field in the mutation. |
| 7926 | func (m *EventMutation) Time() (r time.Time, exists bool) { |
| 7927 | v := m.time |
| 7928 | if v == nil { |
| 7929 | return |
| 7930 | } |
| 7931 | return *v, true |
| 7932 | } |
| 7933 | |
| 7934 | // OldTime returns the old "time" field's value of the Event entity. |
| 7935 | // If the Event object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls