Files
fn-serverless/fn/vendor/github.com/funcy/functions_go/tasks_wrapper.go
2017-06-11 02:10:50 -07:00

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"`
}