Path: blob/main/SignalServiceKit/Messages/InvalidKeyMessages/TSInvalidIdentityKeyErrorMessage.m
1 views
//1// Copyright 2017 Signal Messenger, LLC2// SPDX-License-Identifier: AGPL-3.0-only3//45#import "TSInvalidIdentityKeyErrorMessage.h"67NS_ASSUME_NONNULL_BEGIN89@implementation TSInvalidIdentityKeyErrorMessage1011- (SignalServiceAddress *)theirSignalAddress12{13OWSAbstractMethod();14return nil;15}1617- (instancetype)initWithGrdbId:(int64_t)grdbId18uniqueId:(NSString *)uniqueId19receivedAtTimestamp:(uint64_t)receivedAtTimestamp20sortId:(uint64_t)sortId21timestamp:(uint64_t)timestamp22uniqueThreadId:(NSString *)uniqueThreadId23body:(nullable NSString *)body24bodyRanges:(nullable MessageBodyRanges *)bodyRanges25contactShare:(nullable OWSContact *)contactShare26deprecated_attachmentIds:(nullable NSArray<NSString *> *)deprecated_attachmentIds27editState:(TSEditState)editState28expireStartedAt:(uint64_t)expireStartedAt29expireTimerVersion:(nullable NSNumber *)expireTimerVersion30expiresAt:(uint64_t)expiresAt31expiresInSeconds:(unsigned int)expiresInSeconds32giftBadge:(nullable OWSGiftBadge *)giftBadge33isGroupStoryReply:(BOOL)isGroupStoryReply34isPoll:(BOOL)isPoll35isSmsMessageRestoredFromBackup:(BOOL)isSmsMessageRestoredFromBackup36isViewOnceComplete:(BOOL)isViewOnceComplete37isViewOnceMessage:(BOOL)isViewOnceMessage38linkPreview:(nullable OWSLinkPreview *)linkPreview39messageSticker:(nullable MessageSticker *)messageSticker40quotedMessage:(nullable TSQuotedMessage *)quotedMessage41storedShouldStartExpireTimer:(BOOL)storedShouldStartExpireTimer42storyAuthorUuidString:(nullable NSString *)storyAuthorUuidString43storyReactionEmoji:(nullable NSString *)storyReactionEmoji44storyTimestamp:(nullable NSNumber *)storyTimestamp45wasRemotelyDeleted:(BOOL)wasRemotelyDeleted46errorType:(TSErrorMessageType)errorType47read:(BOOL)read48recipientAddress:(nullable SignalServiceAddress *)recipientAddress49sender:(nullable SignalServiceAddress *)sender50wasIdentityVerified:(BOOL)wasIdentityVerified51{52self = [super initWithGrdbId:grdbId53uniqueId:uniqueId54receivedAtTimestamp:receivedAtTimestamp55sortId:sortId56timestamp:timestamp57uniqueThreadId:uniqueThreadId58body:body59bodyRanges:bodyRanges60contactShare:contactShare61deprecated_attachmentIds:deprecated_attachmentIds62editState:editState63expireStartedAt:expireStartedAt64expireTimerVersion:expireTimerVersion65expiresAt:expiresAt66expiresInSeconds:expiresInSeconds67giftBadge:giftBadge68isGroupStoryReply:isGroupStoryReply69isPoll:isPoll70isSmsMessageRestoredFromBackup:isSmsMessageRestoredFromBackup71isViewOnceComplete:isViewOnceComplete72isViewOnceMessage:isViewOnceMessage73linkPreview:linkPreview74messageSticker:messageSticker75quotedMessage:quotedMessage76storedShouldStartExpireTimer:storedShouldStartExpireTimer77storyAuthorUuidString:storyAuthorUuidString78storyReactionEmoji:storyReactionEmoji79storyTimestamp:storyTimestamp80wasRemotelyDeleted:wasRemotelyDeleted81errorType:errorType82read:read83recipientAddress:recipientAddress84sender:sender85wasIdentityVerified:wasIdentityVerified];86return self;87}8889// --- CODE GENERATION MARKER9091// This snippet is generated by /Scripts/sds_codegen/sds_generate.py. Do not manually edit it, instead run92// `sds_codegen.sh`.939495// --- CODE GENERATION MARKER9697@end9899NS_ASSUME_NONNULL_END100101102