You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Bank Feeds API: Bank Feeds API enables your SMB users to set up bank feeds from accounts in your application to supported accounting platforms.<br/>
22
24
///
@@ -39,37 +41,53 @@ namespace CodatBankFeeds
39
41
/// | Account mapping | Extra functionality for building an account management UI |
40
42
/// </remarks>
41
43
/// </summary>
42
-
publicinterfaceICodatBankFeedsSDK
44
+
publicinterfaceICodatBankFeeds
43
45
{
44
46
45
47
/// <summary>
46
-
/// Bank feed bank account mapping.
48
+
/// Create and manage your Codat companies.
47
49
/// </summary>
48
-
publicIAccountMappingSDKAccountMapping{get;}
50
+
publicICompaniesCompanies{get;}
49
51
50
52
/// <summary>
51
-
/// Create and manage your Codat companies.
53
+
/// Manage your companies' data connections.
52
54
/// </summary>
53
-
publicICompaniesSDKCompanies{get;}
55
+
publicIConnectionsConnections{get;}
54
56
55
57
/// <summary>
56
-
/// Manage your companies' data connections.
58
+
/// Bank feed bank account mapping.
57
59
/// </summary>
58
-
publicIConnectionsSDKConnections{get;}
60
+
publicIAccountMappingAccountMapping{get;}
59
61
60
62
/// <summary>
61
63
/// Source accounts act as a bridge to bank accounts in accounting software.
62
64
/// </summary>
63
-
publicISourceAccountsSDKSourceAccounts{get;}
65
+
publicISourceAccountsSourceAccounts{get;}
64
66
65
67
/// <summary>
66
68
/// Transactions represent debits and credits from a source account.
67
69
/// </summary>
68
-
publicITransactionsSDKTransactions{get;}
70
+
publicITransactionsTransactions{get;}
69
71
}
70
72
71
73
publicclassSDKConfig
72
74
{
75
+
publicstaticstring[]ServerList=newstring[]
76
+
{
77
+
"https://api.codat.io",
78
+
};
79
+
/// Contains the list of servers available to the SDK
0 commit comments