Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9936,6 +9936,12 @@
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"service_account_id": {
"description": "Identifier of the system-managed service account associated with this reader.\nPresent only for readers that are already paired.\nThis field is currently in beta and may change.",
"type": "string",
"format": "uuid",
"x-beta": true
},
"created_at": {
"description": "The timestamp of when the reader was created.",
"type": "string",
Expand Down
9 changes: 9 additions & 0 deletions src/Types/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ class Reader
*/
public ?array $metadata = null;

/**
* Identifier of the system-managed service account associated with this reader.
* Present only for readers that are already paired.
* This field is currently in beta and may change.
*
* @var string|null
*/
public ?string $serviceAccountId = null;

/**
* The timestamp of when the reader was created.
*
Expand Down
Loading