-
Notifications
You must be signed in to change notification settings - Fork 0
/
transactions-sbanken.types.ts
71 lines (70 loc) · 2.13 KB
/
transactions-sbanken.types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* This file was auto-generated by swagger-to-ts.
* Do not make direct changes to the file.
*/
export interface components {
schemas: {
'ReservationType.v1':
| 'NotReservation'
| 'VisaReservation'
| 'PurchaseReservation'
| 'AtmReservation'
'SourceType.v1': 'AccountStatement' | 'Archive'
'CardDetails.v1': {
cardNumber?: string | null
currencyAmount?: number
currencyRate?: number
merchantCategoryCode?: string | null
merchantCategoryDescription?: string | null
merchantCity?: string | null
merchantName?: string | null
originalCurrencyCode?: string | null
purchaseDate?: string
transactionId?: string | null
}
'TransactionDetail.v1': {
formattedAccountNumber?: string | null
transactionId?: number
cid?: string | null
amountDescription?: string | null
receiverName?: string | null
numericReference?: number
payerName?: string | null
registrationDate?: string | null
}
'Transaction.v1': {
accountingDate?: string
interestDate?: string | null
otherAccountNumber?: string | null
otherAccountNumberSpecified?: boolean
amount?: number
text?: string | null
transactionType?: string | null
transactionTypeCode?: number
transactionTypeText?: string | null
isReservation?: boolean
reservationType?: components['schemas']['ReservationType.v1']
source?: components['schemas']['SourceType.v1']
cardDetailsSpecified?: boolean
cardDetails?: components['schemas']['CardDetails.v1']
transactionDetailSpecified?: boolean
transactionDetail?: components['schemas']['TransactionDetail.v1']
}
'ErrorType.':
| 'System'
| 'Input'
| 'State'
| 'ServiceUnavailable'
| 'CustomHttpStatus'
| 'NotFound'
'ListResult.Transaction.v1': {
availableItems?: number
items?: Array<components['schemas']['Transaction.v1']> | null
errorType?: components['schemas']['ErrorType.']
isError?: boolean
errorCode?: number | null
errorMessage?: string | null
traceId?: string | null
}
}
}