BugsnagEndpointConfiguration
Objective-C
@interface BugsnagEndpointConfiguration : NSObject
Swift
class BugsnagEndpointConfiguration : NSObject
Set the endpoints to send data to. By default we’ll send error reports to https://notify.bugsnag.com, and sessions to https://sessions.bugsnag.com, but you can override this if you are using Bugsnag Enterprise to point to your own Bugsnag endpoints.
-
Configures the endpoint to which events should be sent
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull notify;
Swift
var notify: String { get set }
-
Configures the endpoint to which sessions should be sent
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull sessions;
Swift
var sessions: String { get set }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithNotify:(NSString *)notify sessions:(NSString *)sessions;
Swift
init(notify: String, sessions: String)