-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_worker.go
27 lines (26 loc) · 943 Bytes
/
model_worker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Laravel Forge
*
* The Forge API allows you to create and interact with servers and sites on Laravel Forge through a simple REST API.
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package forge
type Worker struct {
Id int32 `json:"id,omitempty"`
Connection string `json:"connection,omitempty"`
Command string `json:"command,omitempty"`
Queue string `json:"queue,omitempty"`
Timeout int32 `json:"timeout,omitempty"`
Sleep int32 `json:"sleep,omitempty"`
Tries string `json:"tries,omitempty"`
Processes int32 `json:"processes,omitempty"`
Stopwaitsecs string `json:"stopwaitsecs,omitempty"`
Environment string `json:"environment,omitempty"`
PhpVersion string `json:"php_version,omitempty"`
Daemon int32 `json:"daemon,omitempty"`
Force int32 `json:"force,omitempty"`
Status string `json:"status,omitempty"`
CreatedAt string `json:"created_at,omitempty"`
}