NXMLegTransferEvent

Objective-C

@interface NXMLegTransferEvent : NXMEvent

Swift

class NXMLegTransferEvent : NXMEvent

Represents a transfer leg event that is sent and received on an NXMCall.

  • Conversation id the leg has been transferred to

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *conversationId;

    Swift

    var conversationId: String? { get }
  • Member id the leg of the conversation the leg has been transferred to

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *memberId;

    Swift

    var memberId: String? { get }
  • Conversation id the leg has been transferred from

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *previousConversationId;

    Swift

    var previousConversationId: String? { get }
  • Member id the leg from the conversation the leg has been transferred from

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *previousMemberId;

    Swift

    var previousMemberId: String? { get }
  • The id of the leg that has been transferred

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *legId;

    Swift

    var legId: String? { get }
  • When the transfer to the new conversation occured

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSDate *timestamp;

    Swift

    var timestamp: Date? { get }