mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
280 B
Go
12 lines
280 B
Go
package functions
|
|
|
|
type TasksWrapper struct {
|
|
|
|
Tasks []Task `json:"tasks,omitempty"`
|
|
|
|
// Used to paginate results. If this is returned, pass it into the same query again to get more results.
|
|
Cursor string `json:"cursor,omitempty"`
|
|
|
|
Error_ ErrorBody `json:"error,omitempty"`
|
|
}
|