Skip to content

Commit e852efe

Browse files
authored
chore: synced file(s) with sumup/apis (#196)
1 parent 9d10ff4 commit e852efe

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-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",

sumup/readers/types.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ class Reader(pydantic.BaseModel):
9999
Max properties: 64
100100
"""
101101

102+
service_account_id: typing.Optional[str] = None
103+
"""
104+
Identifier of the system-managed service account associated with this reader.
105+
Present only for readers that are already paired.
106+
This field is currently in beta and may change.
107+
Format: uuid
108+
"""
109+
102110

103111
class Problem(pydantic.BaseModel):
104112
"""

0 commit comments

Comments
 (0)