Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrInvalidMarker = errors.New("invalid marker")
)
Functions ¶
Types ¶
type Pagination ¶
type Pagination struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*Sets the page size. In: query */ Limit *int64 /*Pagination ID of the last item in the previous list. In: query */ Marker *strfmt.UUID /*Filter for resources not having tags, multiple not-tags are considered as logical AND. Should be provided in a comma separated list. In: query */ NotTags []string /*Filter for resources not having tags, multiple tags are considered as logical OR. Should be provided in a comma separated list. In: query */ NotTagsAny []string /*Sets the page direction. In: query */ PageReverse *bool /*Comma-separated list of sort keys, optionally prefix with - to reverse sort order. In: query */ Sort *string /*Filter for tags, multiple tags are considered as logical AND. Should be provided in a comma separated list. In: query */ Tags []string /*Filter for tags, multiple tags are considered as logical OR. Should be provided in a comma separated list. In: query */ TagsAny []string }
Source Files ¶
Click to show internal directories.
Click to hide internal directories.