FIRAppDistributionRelease.h 759 B

123456789101112131415161718192021222324252627282930
  1. #import <Foundation/Foundation.h>
  2. NS_ASSUME_NONNULL_BEGIN
  3. /**
  4. * The release information returned by the update check when a new version is available.
  5. */
  6. NS_SWIFT_NAME(AppDistributionRelease)
  7. @interface FIRAppDistributionRelease : NSObject
  8. // The short bundle version of this build (example 1.0.0)
  9. @property(nonatomic, copy) NSString *displayVersion;
  10. // The build number of this build (example: 123)
  11. @property(nonatomic, copy) NSString *buildVersion;
  12. // The release notes for this build
  13. @property(nonatomic, copy) NSString *releaseNotes;
  14. // The URL for the build
  15. @property(nonatomic, strong) NSURL *downloadURL;
  16. /** :nodoc: */
  17. - (instancetype)init NS_UNAVAILABLE;
  18. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  19. @end
  20. NS_ASSUME_NONNULL_END