Allows for custom timestamps to be saved with the record.
(self, timestamp)
| 1169 | return clone |
| 1170 | |
| 1171 | def timestamp(self, timestamp): |
| 1172 | """ |
| 1173 | Allows for custom timestamps to be saved with the record. |
| 1174 | """ |
| 1175 | clone = copy.deepcopy(self) |
| 1176 | clone._timestamp = timestamp |
| 1177 | return clone |
| 1178 | |
| 1179 | def if_not_exists(self): |
| 1180 | """ |
no outgoing calls