We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53430e commit 784bb28Copy full SHA for 784bb28
1 file changed
src/Messaging/Controller/BounceController.php
@@ -81,8 +81,15 @@ public function __construct(
81
response: 200,
82
description: 'Success',
83
content: new OA\JsonContent(
84
- type: 'array',
85
- items: new OA\Items(ref: '#/components/schemas/BounceView')
+ properties: [
+ new OA\Property(
86
+ property: 'items',
87
+ type: 'array',
88
+ items: new OA\Items(ref: '#/components/schemas/BounceView')
89
+ ),
90
+ new OA\Property(property: 'pagination', ref: '#/components/schemas/CursorPagination')
91
+ ],
92
+ type: 'object'
93
)
94
),
95
new OA\Response(
0 commit comments