mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
ccb4a88742
git remote add ssk ../SignalServiceKit git remote update git merge -s ours --allow-unrelated-histories --no-commit ssk/master git read-tree --prefix=SignalServiceKit -u ssk/master git commit
23 lines
556 B
Objective-C
23 lines
556 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSSignalServiceProtosCallMessageAnswer;
|
|
|
|
/**
|
|
* Sent by the call recipient upon accepting a CallOffer
|
|
*/
|
|
@interface OWSCallAnswerMessage : NSObject
|
|
|
|
- (instancetype)initWithCallId:(UInt64)callId sessionDescription:(NSString *)sessionDescription;
|
|
|
|
@property (nonatomic, readonly) UInt64 callId;
|
|
@property (nonatomic, readonly, copy) NSString *sessionDescription;
|
|
|
|
- (OWSSignalServiceProtosCallMessageAnswer *)asProtobuf;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|