76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
#if __has_include(<Sentry/Sentry.h>)
 | 
						|
#    import <Sentry/SentryDefines.h>
 | 
						|
#    import <Sentry/SentrySerializable.h>
 | 
						|
#else
 | 
						|
#    import <SentryWithoutUIKit/SentryDefines.h>
 | 
						|
#    import <SentryWithoutUIKit/SentrySerializable.h>
 | 
						|
#endif
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
@class SentryGeo;
 | 
						|
 | 
						|
NS_SWIFT_NAME(User)
 | 
						|
@interface SentryUser : NSObject <SentrySerializable, NSCopying>
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Id of the user
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable userId;
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Email of the user
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable email;
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Username
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable username;
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: IP Address
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable ipAddress;
 | 
						|
 | 
						|
/**
 | 
						|
 * The user segment, for apps that divide users in user segments.
 | 
						|
 * @deprecated This field will be removed in the next major version.
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable segment DEPRECATED_MSG_ATTRIBUTE(
 | 
						|
    "This field is deprecated and will be removed in the next major update.");
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Human readable name
 | 
						|
 */
 | 
						|
@property (atomic, copy) NSString *_Nullable name;
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Geo location of user
 | 
						|
 */
 | 
						|
@property (nullable, nonatomic, strong) SentryGeo *geo;
 | 
						|
 | 
						|
/**
 | 
						|
 * Optional: Additional data
 | 
						|
 */
 | 
						|
@property (atomic, strong) NSDictionary<NSString *, id> *_Nullable data;
 | 
						|
 | 
						|
/**
 | 
						|
 * Initializes a SentryUser with the id
 | 
						|
 * @param userId NSString
 | 
						|
 * @return SentryUser
 | 
						|
 */
 | 
						|
- (instancetype)initWithUserId:(NSString *)userId;
 | 
						|
 | 
						|
- (instancetype)init;
 | 
						|
 | 
						|
- (BOOL)isEqual:(id _Nullable)other;
 | 
						|
 | 
						|
- (BOOL)isEqualToUser:(SentryUser *)user;
 | 
						|
 | 
						|
- (NSUInteger)hash;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |