You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
2.0 KiB

6 years ago
  1. /*
  2. * Copyright 2017 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. #import "FIRAuthRPCRequest.h"
  18. #import "FIRIdentityToolkitRequest.h"
  19. NS_ASSUME_NONNULL_BEGIN
  20. /** @class FIRGetAccountInfoRequest
  21. @brief Represents the parameters for the getAccountInfo endpoint.
  22. @see https://developers.google.com/identity/toolkit/web/reference/relyingparty/getAccountInfo
  23. */
  24. @interface FIRGetAccountInfoRequest : FIRIdentityToolkitRequest <FIRAuthRPCRequest>
  25. /** @property accessToken
  26. @brief The STS Access Token for the authenticated user.
  27. */
  28. @property(nonatomic, copy) NSString *accessToken;
  29. /** @fn initWithEndpoint:requestConfiguration:requestConfiguration
  30. @brief Please use initWithAccessToken:requestConfiguration: instead.
  31. */
  32. - (nullable instancetype)initWithEndpoint:(NSString *)endpoint
  33. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration
  34. NS_UNAVAILABLE;
  35. /** @fn initWithAccessToken:requestConfiguration
  36. @brief Designated initializer.
  37. @param accessToken The Access Token of the authenticated user.
  38. @param requestConfiguration An object containing configurations to be added to the request.
  39. */
  40. - (nullable instancetype)initWithAccessToken:(NSString *)accessToken
  41. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration
  42. NS_DESIGNATED_INITIALIZER;
  43. @end
  44. NS_ASSUME_NONNULL_END