vendor/github.com/McKael/madon/v3/madon.go
changeset 270 df7e9dff1b66
parent 268 4dd196a4ee7c
equal deleted inserted replaced
269:c50e88700432 270:df7e9dff1b66
    11 	"github.com/pkg/errors"
    11 	"github.com/pkg/errors"
    12 )
    12 )
    13 
    13 
    14 // LimitParams contains common limit/paging options for the Mastodon REST API
    14 // LimitParams contains common limit/paging options for the Mastodon REST API
    15 type LimitParams struct {
    15 type LimitParams struct {
    16 	Limit          int   // Number of items per query
    16 	Limit          int              // Number of items per query
    17 	SinceID, MaxID int64 // Boundaries
    17 	SinceID, MaxID ActivityID // Boundaries
    18 	All            bool  // Get as many items as possible
    18 	All            bool             // Get as many items as possible
    19 }
    19 }
    20 
    20 
    21 // apiCallParams is a map with the parameters for an API call
    21 // apiCallParams is a map with the parameters for an API call
    22 type apiCallParams map[string]string
    22 type apiCallParams map[string]string
    23 
    23