mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
45 lines
1 KiB
Objective-C
45 lines
1 KiB
Objective-C
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSMessageServiceParams.h"
|
|
#import "TSConstants.h"
|
|
#import <SignalCoreKit/NSData+OWS.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation OWSMessageServiceParams
|
|
|
|
+ (NSDictionary *)JSONKeyPathsByPropertyKey
|
|
{
|
|
return [NSDictionary mtl_identityPropertyMapWithModel:[self class]];
|
|
}
|
|
|
|
- (instancetype)initWithType:(TSWhisperMessageType)type
|
|
recipientId:(NSString *)destination
|
|
device:(int)deviceId
|
|
content:(NSData *)content
|
|
isSilent:(BOOL)isSilent
|
|
isOnline:(BOOL)isOnline
|
|
registrationId:(int)registrationId
|
|
{
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_type = type;
|
|
_destination = destination;
|
|
_destinationDeviceId = deviceId;
|
|
_destinationRegistrationId = registrationId;
|
|
_content = [content base64EncodedString];
|
|
_silent = isSilent;
|
|
_online = isOnline;
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|