VGMemberChannel

Objective-C

@interface VGMemberChannel : NSObject

@property(readonly) VGChannelType type;
@property(readonly, nullable) VGChannel* from;
@property(readonly, nullable) VGChannel* to;

- (instancetype)init __attribute__((unavailable));

@end

Swift

class VGMemberChannel : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(readonly) VGChannelType type

    Swift

    var type: VGChannelType { get }
  • Undocumented

    Declaration

    Objective-C

    @property(readonly, nullable) VGChannel* from

    Swift

    var from: VGChannel? { get }
  • to

    Undocumented

    Declaration

    Objective-C

    @property(readonly, nullable) VGChannel* to

    Swift

    var to: VGChannel? { get }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init __attribute__((unavailable));