summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLAccountManager_Private.h
blob: 4644635940f7872645669406c12fdfdd0afb5015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "MGLAccountManager.h"

@interface MGLAccountManager (Private)

/// Returns the shared instance of the `MGLAccountManager` class.
@property (class, nonatomic, readonly) MGLAccountManager *sharedManager;

/// The current global access token.
@property (atomic) NSString *accessToken;

/// The API base URL that is used to access Mapbox resources. The default base URL is `https://api.mapbox.com`. If `nil`, the Mapbox default base API URL is in use.
@property (atomic, readwrite) NSURL *apiBaseURL;

@end