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.
39 lines
1.2 KiB
Objective-C
39 lines
1.2 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;
|
|
@property (nonatomic) uint ttl;
|
|
|
|
- (instancetype)initWithType:(TSWhisperMessageType)type
|
|
recipientId:(NSString *)destination
|
|
device:(int)deviceId
|
|
content:(NSData *)content
|
|
isSilent:(BOOL)isSilent
|
|
isOnline:(BOOL)isOnline
|
|
registrationId:(int)registrationId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|