export type Sb1Tokens = { access_token: string expires_in: number refresh_token_expires_in: number refresh_token_absolute_expires_in: number token_type: string refresh_token: string } export type Sb1Account = { key: string accountNumber: string iban: string name: string balance: number availableBalance: number currencyCode: string } export type Sb1Transaction = { id: string nonUniqueId: string description: string cleanedDescription: string amount: number date: number typeCode: string typeText: string currencyCode: string bookingStatus: string accountName: string accountKey: string } export type ActualAccount = { id: string name: string type: string closed: boolean }