@@ -29,7 +29,7 @@ NS_ASSUME_NONNULL_BEGIN
29
29
NS_SWIFT_NAME (AppDistribution)
30
30
@interface FIRAppDistribution : NSObject
31
31
32
- // Is true if the App Distribution tester is signed in
32
+ // / Returns true if the App Distribution tester is signed in.
33
33
@property(nonatomic, readonly) BOOL isTesterSignedIn;
34
34
35
35
/* * :nodoc: */
@@ -62,28 +62,29 @@ NS_SWIFT_NAME(AppDistribution)
62
62
63
63
@end
64
64
65
- // The error domain for codes in the FIRAppDistributionError enum.
65
+ // / The error domain for codes in the ` FIRAppDistributionError` enum.
66
66
FOUNDATION_EXPORT NSString *const FIRAppDistributionErrorDomain
67
67
NS_SWIFT_NAME (AppDistributionErrorDomain);
68
68
69
- // The key for finding error details in the NSError userInfo.
69
+ // / The key for finding error details in the ` NSError`'s ` userInfo` .
70
70
FOUNDATION_EXPORT NSString *const FIRAppDistributionErrorDetailsKey
71
71
NS_SWIFT_NAME (FunctionsErrorDetailsKey);
72
72
73
73
/* *
74
- * @enum AppDistributionError
74
+ * Error codes representing sign in or version check failure reasons.
75
75
*/
76
76
typedef NS_ENUM (NSUInteger , FIRAppDistributionError) {
77
- // / Unknown error.
77
+ // / Returned when an unknown error occurred .
78
78
FIRAppDistributionErrorUnknown = 0 ,
79
79
80
- // Authentication failed
80
+ // / Returned when App Distribution failed to authenticate the user.
81
81
FIRAppDistributionErrorAuthenticationFailure = 1 ,
82
82
83
- // Authentication canceled
83
+ // / Returned when sign-in was cancelled.
84
84
FIRAppDistributionErrorAuthenticationCancelled = 2 ,
85
85
86
- // Network unavailable to make requests or the request timed out
86
+ // / Returned when the network was unavailable to make requests or
87
+ // / the request timed out.
87
88
FIRAppDistributionErrorNetworkFailure = 3 ,
88
89
89
90
} NS_SWIFT_NAME(AppDistributionError);
0 commit comments