VGChannel

Objective-C

@interface VGChannel : NSObject

@property (readonly, nullable) NSString* id;
@property (readonly, nullable) NSString* number;

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

@end

Swift

class VGChannel : NSObject

Undocumented

  • id

    Undocumented

    Declaration

    Objective-C

    @property (readonly, nullable) NSString* id

    Swift

    var id: String? { get }
  • Undocumented

    Declaration

    Objective-C

    @property (readonly, nullable) NSString* number

    Swift

    var number: String? { get }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

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