Skip to content

Commit 6e70f86

Browse files
authored
chore: synced file(s) with sumup/apis (#244)
1 parent bcbde70 commit 6e70f86

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

openapi.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9936,6 +9936,12 @@
99369936
"metadata": {
99379937
"$ref": "#/components/schemas/Metadata"
99389938
},
9939+
"service_account_id": {
9940+
"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.",
9941+
"type": "string",
9942+
"format": "uuid",
9943+
"x-beta": true
9944+
},
99399945
"created_at": {
99409946
"description": "The timestamp of when the reader was created.",
99419947
"type": "string",

sdk/src/resources/readers/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ export type Reader = {
8585
status: ReaderStatus;
8686
device: ReaderDevice;
8787
metadata?: Metadata;
88+
/**
89+
* Identifier of the system-managed service account associated with this reader.
90+
* Present only for readers that are already paired.
91+
* This field is currently in beta and may change.
92+
*/
93+
service_account_id?: string;
8894
/**
8995
* The timestamp of when the reader was created.
9096
*/

0 commit comments

Comments
 (0)