We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6a830c + e175179 commit 206a412Copy full SHA for 206a412
src/Loadbalancers/Entities/ErrorPage.php
@@ -6,7 +6,8 @@
6
7
/**
8
* @property int $id
9
- * @property int $targetGroupId
+ * @property int|null $targetGroupId
10
+ * @property int|null $listenerId
11
* @property string $statusCodes
12
* @property string $content
13
* @property \DateTime $createdAt
src/Loadbalancers/ErrorPageClient.php
@@ -17,6 +17,7 @@ public function getEntityMap()
17
return [
18
'id' => 'id',
19
'target_group_id' => 'targetGroupId',
20
+ 'listener_id' => 'listenerId',
21
'status_codes' => 'statusCodes',
22
'content' => 'content',
23
'created_at' => 'createdAt',
0 commit comments