(author identity.Interface, unixTime int64, status common.Status)
| 51 | } |
| 52 | |
| 53 | func NewSetStatusOp(author identity.Interface, unixTime int64, status common.Status) *SetStatusOperation { |
| 54 | return &SetStatusOperation{ |
| 55 | OpBase: dag.NewOpBase(SetStatusOp, author, unixTime), |
| 56 | Status: status, |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | type SetStatusTimelineItem struct { |
| 61 | combinedId entity.CombinedId |