// // TWTRAuthSession.h // // Copyright (c) 2015 Twitter. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN /** * The base session which all sessions must conform to. */ @protocol TWTRBaseSession @end /** * Encapsulates the authorization details of an OAuth Session. */ @protocol TWTRAuthSession @property (nonatomic, readonly, copy) NSString *authToken; @property (nonatomic, readonly, copy) NSString *authTokenSecret; @property (nonatomic, readonly, copy) NSString *userID; @end NS_ASSUME_NONNULL_END