String is a string value evaluated at the set timestamp.
| 281 | |
| 282 | // String is a string value evaluated at the set timestamp. |
| 283 | type String struct { |
| 284 | Value string `json:"value"` |
| 285 | Timestamp Time `json:"timestamp"` |
| 286 | } |
| 287 | |
| 288 | func (s *String) String() string { |
| 289 | return s.Value |
nothing calls this directly
no outgoing calls
no test coverage detected