12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
-
-
- #import <Foundation/Foundation.h>
-
- #import "FIRAuthRPCRequest.h"
-
- NS_ASSUME_NONNULL_BEGIN
-
-
- @interface FIRAuthRequestConfiguration : NSObject
-
-
- @property(nonatomic, copy, readonly) NSString *APIKey;
-
-
- @property(nonatomic, copy, nullable) NSString *languageCode;
-
-
- @property(nonatomic, copy, nullable) NSString *additionalFrameworkMarker;
-
- - (instancetype)init NS_UNAVAILABLE;
-
-
- - (nullable instancetype)initWithAPIKey:(NSString *)APIKey NS_DESIGNATED_INITIALIZER;
- @end
-
- NS_ASSUME_NONNULL_END
|