blob: 52d9208791b2fb138d6be2314f3c0bac18bcd176 (
plain)
1
2
3
4
5
6
7
8
|
package model
// StatusTimelineResponse wraps a slice of statuses, ready to be serialized, along with the Link
// header for the previous and next queries, to be returned to the client.
type StatusTimelineResponse struct {
Statuses []*Status
LinkHeader string
}
|