1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
-
-
- #import <Foundation/Foundation.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
-
- @interface FIRAuthAppCredential : NSObject <NSSecureCoding>
-
-
- @property(nonatomic, strong, readonly) NSString *receipt;
-
-
- @property(nonatomic, strong, readonly, nullable) NSString *secret;
-
-
- - (instancetype)initWithReceipt:(NSString *)receipt secret:(nullable NSString *)secret
- NS_DESIGNATED_INITIALIZER;
-
-
- - (instancetype)init NS_UNAVAILABLE;
-
-
- @end
-
- NS_ASSUME_NONNULL_END
|