123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
-
-
- #import <Foundation/Foundation.h>
-
- #import "FIRAuthRequestConfiguration.h"
-
- @class FIRAuthRequestConfiguration;
-
- NS_ASSUME_NONNULL_BEGIN
-
-
- @interface FIRIdentityToolkitRequest : NSObject
-
-
- @property(nonatomic, copy, readonly) NSString *endpoint;
-
-
- @property(nonatomic, copy, readonly) NSString *APIKey;
-
-
- - (instancetype)init NS_UNAVAILABLE;
-
-
- - (nullable instancetype)initWithEndpoint:(NSString *)endpoint
- requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration
- NS_DESIGNATED_INITIALIZER;
-
-
- - (NSURL *)requestURL;
-
-
- - (FIRAuthRequestConfiguration *)requestConfiguration;
-
- @end
-
- NS_ASSUME_NONNULL_END
|