NXMLeg

Objective-C

@interface NXMLeg : NSObject

Swift

class NXMLeg : NSObject

The NXMLeg object represent the member media state

  • Indicates the unique identifier of the leg.

    Declaration

    Objective-C

    @property (nonatomic, copy, nonnull) NSString *uuid;

    Swift

    var uuid: String { get set }
  • Indicates the leg type.

    Declaration

    Objective-C

    @property (nonatomic) NXMLegType type;

    Swift

    var type: NXMLegType { get set }
  • Indicates the leg status.

    Declaration

    Objective-C

    @property (nonatomic) NXMLegStatus status;

    Swift

    var status: NXMLegStatus { get set }
  • Indicates the leg conversation id.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *conversationUuid;

    Swift

    var conversationUuid: String? { get set }
  • Indicates the leg member id.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *memberUUid;

    Swift

    var memberUUid: String? { get set }
  • Indicates the started time of the current status of the leg.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSDate *date;

    Swift

    var date: Date? { get set }