Skip to content

Commit a5a0453

Browse files
committed
Bugfix: wrong responseBodyV2DecodedPayload.summary type
1 parent 15cecb0 commit a5a0453

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Models/NotificationsResponseBodyV2DecodedPayload.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ public function map(array $data): AbstractModel
114114
if (!empty($data['data'])) {
115115
$this->data = new NotificationsResponseBodyV2DecodedPayloadData($data['data']);
116116
}
117+
if (!empty($data['summary'])) {
118+
$this->summary = new NotificationsResponseBodyV2DecodedPayloadSummary($data['summary']);
119+
}
117120

118121
return $this;
119122
}

0 commit comments

Comments
 (0)