SetModTime sets the "unixMtime" field.
(t time.Time)
| 551 | |
| 552 | // SetModTime sets the "unixMtime" field. |
| 553 | func (bb *Builder) SetModTime(t time.Time) *Builder { |
| 554 | bb.m["unixMtime"] = RFC3339FromTime(t) |
| 555 | return bb |
| 556 | } |
| 557 | |
| 558 | // CapCreationTime caps the "unixCtime" field to be less or equal than "unixMtime" |
| 559 | func (bb *Builder) CapCreationTime() *Builder { |