mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
45 lines
1.4 KiB
Objective-C
45 lines
1.4 KiB
Objective-C
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "TSConstants.h"
|
|
#import <Mantle/Mantle.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* Contstructs the per-device-message parameters used when submitting a message to
|
|
* the Signal Web Service.
|
|
*
|
|
* See:
|
|
* https://github.com/signalapp/libsignal-service-java/blob/master/java/src/main/java/org/whispersystems/signalservice/internal/push/OutgoingPushMessage.java
|
|
*/
|
|
@interface OWSMessageServiceParams : MTLModel <MTLJSONSerializing>
|
|
|
|
@property (nonatomic, readonly) int type;
|
|
@property (nonatomic, readonly) NSString *destination;
|
|
@property (nonatomic, readonly) int destinationDeviceId;
|
|
@property (nonatomic, readonly) int destinationRegistrationId;
|
|
@property (nonatomic, readonly) NSString *content;
|
|
@property (nonatomic, readonly) BOOL silent;
|
|
@property (nonatomic, readonly) BOOL online;
|
|
|
|
// Loki: Message ttl
|
|
@property (nonatomic, readonly) uint ttl;
|
|
|
|
// Loki: Wether this message is a p2p ping
|
|
@property (nonatomic, readonly) BOOL isPing;
|
|
|
|
- (instancetype)initWithType:(TSWhisperMessageType)type
|
|
recipientId:(NSString *)destination
|
|
device:(int)deviceId
|
|
content:(NSData *)content
|
|
isSilent:(BOOL)isSilent
|
|
isOnline:(BOOL)isOnline
|
|
registrationId:(int)registrationId
|
|
ttl:(uint)ttl
|
|
isPing:(BOOL)isPing;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|