-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonobankAccount.Table.al
88 lines (87 loc) · 2.42 KB
/
MonobankAccount.Table.al
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
table 50181 "Monobank Account"
{
Caption = 'Monobank Account';
DataClassification = ToBeClassified;
LookupPageId = "Monobank Accounts";
DrillDownPageId = "Monobank Accounts";
fields
{
field(10; "Client Id"; Text[30])
{
Caption = 'Client Id';
DataClassification = EndUserIdentifiableInformation;
}
field(20; "Account Id"; Text[30])
{
Caption = 'Account Id';
DataClassification = EndUserIdentifiableInformation;
}
field(25; "Send Id"; Text[30])
{
Caption = 'Send Id';
DataClassification = EndUserIdentifiableInformation;
}
field(50; "Currency Id"; Integer)
{
Caption = 'Currency Id';
DataClassification = CustomerContent;
}
field(51; "Currency Code"; Code[10])
{
Caption = 'Currency Code';
DataClassification = CustomerContent;
}
field(60; Type; Text[50])
{
Caption = 'Type';
DataClassification = CustomerContent;
}
field(40; IBAN; Code[40])
{
Caption = 'IBAN';
DataClassification = CustomerContent;
}
field(70; "Cashback Type"; Text[50])
{
Caption = 'Cashback Type';
DataClassification = CustomerContent;
}
field(80; "Credit Limit"; Decimal)
{
Caption = 'Credit Limit';
DataClassification = CustomerContent;
}
field(90; "Balance"; Decimal)
{
Caption = 'Balance';
DataClassification = CustomerContent;
}
field(100; "Last Sync. DateTime"; DateTime)
{
Caption = 'Last Sync. DateTime';
DataClassification = CustomerContent;
}
field(30; "Card Number"; Text[250])
{
Caption = 'Card Number';
DataClassification = EndUserIdentifiableInformation;
}
field(110; "Client Name"; Text[100])
{
Caption = 'Client Name';
DataClassification = EndUserIdentifiableInformation;
}
field(120; "Description"; Text[100])
{
Caption = 'Description';
DataClassification = CustomerContent;
}
}
keys
{
key(PK; "Client Id", "Account Id")
{
Clustered = true;
}
}
}