15 lines
310 B
Objective-C
15 lines
310 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// Used with an AUTH protocol messages to send authentication details
|
|
@interface ARTAuthDetails : NSObject<NSCopying>
|
|
|
|
@property (nonatomic, copy) NSString *accessToken;
|
|
|
|
- (instancetype)initWithToken:(NSString *)token;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|