SMIEntryAck

Objective-C

@protocol SMIEntryAck <SMIEntryPayload>

Swift

protocol EntryAck : EntryPayload

Represents a single acknowledgement of an SMIConversationEntry.

  • The type of acknowledgement.

    Declaration

    Objective-C

    @property (nonatomic, readonly) SMIAcknowledgementTypes ackType;

    Swift

    var ackType: AcknowledgementTypes { get }
  • The SMIConversationEntry entry which was acknowledgd.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<SMIConversationEntry> _Nonnull entry;

    Swift

    var entry: ConversationEntry { get }
  • The SMIParticipant which has acknowledged the entry above.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<SMIParticipant> _Nonnull from;

    Swift

    var from: Participant { get }
  • The time the message was acknowledged.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSDate *_Nonnull timestamp;

    Swift

    var timestamp: Date { get }