mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
638 B
Objective-C
25 lines
638 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSPrimaryStorage.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSPrimaryStorage (Calling)
|
|
|
|
// phoneNumber is an e164 formatted phone number.
|
|
//
|
|
// callKitId is expected to have CallKitCallManager.kAnonymousCallHandlePrefix.
|
|
- (void)setPhoneNumber:(NSString *)phoneNumber forCallKitId:(NSString *)callKitId;
|
|
|
|
// returns an e164 formatted phone number or nil if no
|
|
// record can be found.
|
|
//
|
|
// callKitId is expected to have CallKitCallManager.kAnonymousCallHandlePrefix.
|
|
- (NSString *)phoneNumberForCallKitId:(NSString *)callKitId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|