@@ -18,11 +18,11 @@ class IssueField implements \JsonSerializable
1818
1919 public ?TimeTracking $ timeTracking = null ;
2020
21- public ?IssueType $ issuetype ;
21+ public ?IssueType $ issuetype = null ;
2222
2323 public ?Reporter $ reporter = null ;
2424
25- public ?DateTimeInterface $ created ;
25+ public ?DateTimeInterface $ created = null ;
2626
2727 public ?DateTimeInterface $ updated = null ;
2828
@@ -36,7 +36,7 @@ class IssueField implements \JsonSerializable
3636
3737 public Project $ project ;
3838
39- public ?string $ environment ;
39+ public ?string $ environment = null ;
4040
4141 /* @var \JiraRestApi\Issue\Component[] This property must don't describe the type feature for JSON deserialized. */
4242 public $ components ;
@@ -45,15 +45,15 @@ class IssueField implements \JsonSerializable
4545
4646 public object $ votes ;
4747
48- public ?object $ resolution ;
48+ public ?object $ resolution = null ;
4949
5050 public array $ fixVersions ;
5151
52- public ?Reporter $ creator ;
52+ public ?Reporter $ creator = null ;
5353
54- public ?object $ watches ;
54+ public ?object $ watches = null ;
5555
56- public ?object $ worklog ;
56+ public ?object $ worklog = null ;
5757
5858 public ?Reporter $ assignee = null ;
5959
@@ -63,13 +63,13 @@ class IssueField implements \JsonSerializable
6363 /** @var \JiraRestApi\Issue\Attachment[] */
6464 public $ attachment ;
6565
66- public ?string $ aggregatetimespent ;
66+ public ?string $ aggregatetimespent = null ;
6767
68- public ?string $ timeestimate ;
68+ public ?string $ timeestimate = null ;
6969
70- public ?string $ aggregatetimeoriginalestimate ;
70+ public ?string $ aggregatetimeoriginalestimate = null ;
7171
72- public ?string $ resolutiondate ;
72+ public ?string $ resolutiondate = null ;
7373
7474 public ?DateTimeInterface $ duedate = null ;
7575
@@ -82,20 +82,20 @@ class IssueField implements \JsonSerializable
8282
8383 public int $ workratio ;
8484
85- public ?object $ aggregatetimeestimate ;
85+ public ?object $ aggregatetimeestimate = null ;
8686
87- public ?object $ aggregateprogress ;
87+ public ?object $ aggregateprogress = null ;
8888
89- public ?object $ lastViewed ;
89+ public ?object $ lastViewed = null ;
9090
91- public ?object $ timeoriginalestimate ;
91+ public ?object $ timeoriginalestimate = null ;
9292
9393 /** @var object|null */
9494 public $ parent ;
9595
96- public ?array $ customFields ;
96+ public ?array $ customFields = null ;
9797
98- public ?SecurityScheme $ security ;
98+ public ?SecurityScheme $ security = null ;
9999
100100 public function __construct ($ updateIssue = false )
101101 {
0 commit comments