We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f685cbc + dd54777 commit 84206e6Copy full SHA for 84206e6
agents.go
@@ -35,6 +35,12 @@ type Agent struct {
35
Creator *User `json:"creator,omitempty"`
36
37
Job *Job `json:"job,omitempty"`
38
+
39
+ Paused *bool `json:"paused,omitempty"`
40
+ PausedAt *Timestamp `json:"paused_at,omitempty"`
41
+ PausedBy *User `json:"paused_by,omitempty"`
42
+ PausedNote *string `json:"paused_note,omitempty"`
43
+ PausedTimeoutInMinutes *int `json:"paused_timeout_in_minutes,omitempty"`
44
}
45
46
// AgentListOptions specifies the optional parameters to the
0 commit comments