-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodel_member.go
More file actions
25 lines (23 loc) · 1.49 KB
/
model_member.go
File metadata and controls
25 lines (23 loc) · 1.49 KB
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
/*
* MX API
*
* The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
*
* API version: 0.1
*/
package atrium
type Member struct {
AggregatedAt string `json:"aggregated_at,omitempty"`
ConnectionStatus string `json:"connection_status,omitempty"`
GUID string `json:"guid,omitempty"`
Identifier string `json:"identifier,omitempty"`
InstitutionCode string `json:"institution_code,omitempty"`
IsBeingAggregated bool `json:"is_being_aggregated,omitempty"`
IsOauth bool `json:"is_oauth,omitempty"`
Metadata string `json:"metadata,omitempty"`
Name string `json:"name,omitempty"`
OauthWindowUri string `json:"oauth_window_uri,omitempty"`
Status string `json:"status,omitempty"`
SuccessfullyAggregatedAt string `json:"successfully_aggregated_at,omitempty"`
UserGUID string `json:"user_guid,omitempty"`
}