FeedItemData

@interface FeedItemData : NSObject

@property (nonatomic, assign) FeedItemType type;
@property (nonatomic, strong) NSString *block;
@property (nonatomic, strong) Text *text;
@property (nonatomic, strong) Comment *comment;
@property (nonatomic, strong) Like *like;
@property (nonatomic, strong) Files *files;
@property (nonatomic, strong) Ignore *ignore;
@property (nonatomic, strong) Join *join;
@property (nonatomic, strong) Leave *leave;
@property (nonatomic, strong) Announce *announce;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, assign) FeedItemType type

    Swift

    var type: FeedItemType { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *block

    Swift

    var block: String { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Text *text

    Swift

    var text: Text { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Comment *comment

    Swift

    var comment: Comment { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Like *like

    Swift

    var like: Like { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Files *files

    Swift

    var files: Files { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Ignore *ignore

    Swift

    var ignore: Ignore { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Join *join

    Swift

    var join: Join { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Leave *leave

    Swift

    var leave: Leave { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) Announce *announce

    Swift

    var announce: Announce { get set }