@@ -18,11 +18,11 @@ class IssueField implements \JsonSerializable
18
18
19
19
public ?TimeTracking $ timeTracking = null ;
20
20
21
- public ?IssueType $ issuetype ;
21
+ public ?IssueType $ issuetype = null ;
22
22
23
23
public ?Reporter $ reporter = null ;
24
24
25
- public ?DateTimeInterface $ created ;
25
+ public ?DateTimeInterface $ created = null ;
26
26
27
27
public ?DateTimeInterface $ updated = null ;
28
28
@@ -36,7 +36,7 @@ class IssueField implements \JsonSerializable
36
36
37
37
public Project $ project ;
38
38
39
- public ?string $ environment ;
39
+ public ?string $ environment = null ;
40
40
41
41
/* @var \JiraRestApi\Issue\Component[] This property must don't describe the type feature for JSON deserialized. */
42
42
public $ components ;
@@ -45,15 +45,15 @@ class IssueField implements \JsonSerializable
45
45
46
46
public object $ votes ;
47
47
48
- public ?object $ resolution ;
48
+ public ?object $ resolution = null ;
49
49
50
50
public array $ fixVersions ;
51
51
52
- public ?Reporter $ creator ;
52
+ public ?Reporter $ creator = null ;
53
53
54
- public ?object $ watches ;
54
+ public ?object $ watches = null ;
55
55
56
- public ?object $ worklog ;
56
+ public ?object $ worklog = null ;
57
57
58
58
public ?Reporter $ assignee = null ;
59
59
@@ -63,13 +63,13 @@ class IssueField implements \JsonSerializable
63
63
/** @var \JiraRestApi\Issue\Attachment[] */
64
64
public $ attachment ;
65
65
66
- public ?string $ aggregatetimespent ;
66
+ public ?string $ aggregatetimespent = null ;
67
67
68
- public ?string $ timeestimate ;
68
+ public ?string $ timeestimate = null ;
69
69
70
- public ?string $ aggregatetimeoriginalestimate ;
70
+ public ?string $ aggregatetimeoriginalestimate = null ;
71
71
72
- public ?string $ resolutiondate ;
72
+ public ?string $ resolutiondate = null ;
73
73
74
74
public ?DateTimeInterface $ duedate = null ;
75
75
@@ -82,20 +82,20 @@ class IssueField implements \JsonSerializable
82
82
83
83
public int $ workratio ;
84
84
85
- public ?object $ aggregatetimeestimate ;
85
+ public ?object $ aggregatetimeestimate = null ;
86
86
87
- public ?object $ aggregateprogress ;
87
+ public ?object $ aggregateprogress = null ;
88
88
89
- public ?object $ lastViewed ;
89
+ public ?object $ lastViewed = null ;
90
90
91
- public ?object $ timeoriginalestimate ;
91
+ public ?object $ timeoriginalestimate = null ;
92
92
93
93
/** @var object|null */
94
94
public $ parent ;
95
95
96
- public ?array $ customFields ;
96
+ public ?array $ customFields = null ;
97
97
98
- public ?SecurityScheme $ security ;
98
+ public ?SecurityScheme $ security = null ;
99
99
100
100
public function __construct ($ updateIssue = false )
101
101
{
0 commit comments