BBBulletin.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #import <AddressBook/AddressBook.h>
  2. @class BBAction, BBSectionParameters, BBSectionSubtypeParameters;
  3. typedef NS_ENUM(NSUInteger, BBBulletinAccessoryStyle) {
  4. BBBulletinAccessoryStyleNone,
  5. BBBulletinAccessoryStyleVIP = 4,
  6. };
  7. @interface BBBulletin : NSObject
  8. @property (nonatomic, retain) NSString *bulletinID;
  9. @property (nonatomic, retain) NSString *sectionID;
  10. @property (nonatomic, retain) NSString *publisherBulletinID;
  11. @property (nonatomic, retain) NSString *recordID;
  12. @property BOOL showsUnreadIndicator;
  13. @property (nonatomic, retain) NSString *title;
  14. @property (nonatomic, retain) NSString *subtitle;
  15. @property (nonatomic, retain) NSString *message;
  16. @property (nonatomic, retain) NSDate *date;
  17. @property (nonatomic, retain) NSDate *lastInterruptDate;
  18. @property (nonatomic, retain) NSString *unlockActionLabelOverride;
  19. @property (nonatomic, retain) NSString *section;
  20. @property (nonatomic, retain) BBAction *defaultAction;
  21. @property BBBulletinAccessoryStyle accessoryStyle;
  22. @property (nonatomic, retain) NSDictionary *context;
  23. @property ABRecordID addressBookRecordID;
  24. - (BBSectionSubtypeParameters *)_sectionSubtypeParameters;
  25. - (BBSectionParameters *)_sectionParameters;
  26. @end