GIDAuthFlow_TEMP.h 544 B

12345678910111213141516171819
  1. #import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDProfileData.h"
  2. #import "GoogleSignIn/Sources/GIDCallbackQueue.h"
  3. #ifdef SWIFT_PACKAGE
  4. @import AppAuth;
  5. #else
  6. #import <AppAuth/AppAuth.h>
  7. #endif
  8. // The callback queue used for authentication flow.
  9. @interface GIDAuthFlow_TEMP : GIDCallbackQueue
  10. @property(nonatomic, strong, nullable) OIDAuthState *authState;
  11. @property(nonatomic, strong, nullable) NSError *error;
  12. @property(nonatomic, copy, nullable) NSString *emmSupport;
  13. @property(nonatomic, nullable) GIDProfileData *profileData;
  14. @end