-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlertManagementAlertTodosArgumentsObject.php
More file actions
87 lines (65 loc) · 1.42 KB
/
AlertManagementAlertTodosArgumentsObject.php
File metadata and controls
87 lines (65 loc) · 1.42 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
namespace GraphQL\SchemaObject;
class AlertManagementAlertTodosArgumentsObject extends ArgumentsObject
{
protected $action;
protected $authorId;
protected $projectId;
protected $groupId;
protected $state;
protected $type;
protected $after;
protected $before;
protected $first;
protected $last;
public function setAction(array $action)
{
$this->action = $action;
return $this;
}
public function setAuthorId(array $authorId)
{
$this->authorId = $authorId;
return $this;
}
public function setProjectId(array $projectId)
{
$this->projectId = $projectId;
return $this;
}
public function setGroupId(array $groupId)
{
$this->groupId = $groupId;
return $this;
}
public function setState(array $state)
{
$this->state = $state;
return $this;
}
public function setType(array $type)
{
$this->type = $type;
return $this;
}
public function setAfter($after)
{
$this->after = $after;
return $this;
}
public function setBefore($before)
{
$this->before = $before;
return $this;
}
public function setFirst($first)
{
$this->first = $first;
return $this;
}
public function setLast($last)
{
$this->last = $last;
return $this;
}
}