-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoints.go
25 lines (23 loc) · 1.3 KB
/
endpoints.go
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
package transactapi
type Endpoint string
const (
EndpointAddCreditCard Endpoint = "addCreditCard"
EndpointCCFundMove Endpoint = "ccFundMove"
EndpointCreateAccount Endpoint = "createAccount"
EndpointCreateExternalAccount Endpoint = "createExternalAccount"
EndpointExternalFundMove Endpoint = "externalFundMove"
EndpointGetAccount Endpoint = "getAccount"
EndpointGetCreditCard Endpoint = "getCreditCard"
EndpointGetExternalAccount Endpoint = "getExternalAccount"
EndpointGetOffering Endpoint = "getOffering"
EndpointGetParty Endpoint = "getParty"
EndpointGetTradeDocument Endpoint = "getTradeDocument"
EndpointGetTradeStatus Endpoint = "getTradeStatus"
EndpointGetTradeStatusesForOffering Endpoint = "getTradeStatusesForOffering"
EndpointGetTradesForOffering Endpoint = "getTradesForOffering"
EndpointUpdateAccount Endpoint = "updateAccount"
EndpointUpdateCreditCard Endpoint = "updateCreditCard"
EndpointUpdateExternalAccount Endpoint = "updateExternalAccount"
EndpointUpdateTradeTransactionType Endpoint = "updateTradeTransactionType"
EndpointValidateABARoutingNumber Endpoint = "validateABARoutingNumber"
)