FIRFinalizePasskeyEnrollmentRequest.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2023 Google LLC
  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/LICENSE2.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 "FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h"
  17. #import "FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h"
  18. NS_ASSUME_NONNULL_BEGIN
  19. /** @class FIRFinalizePasskeyEnrollmentRequest
  20. @brief Represents the parameters for the finalizePasskeyEnrollment endpoint.
  21. */
  22. @interface FIRFinalizePasskeyEnrollmentRequest : FIRIdentityToolkitRequest <FIRAuthRPCRequest>
  23. /**
  24. @property IDToken
  25. @brief The raw user access token.
  26. */
  27. @property(nonatomic, copy, readonly) NSString *IDToken;
  28. /**
  29. @property name
  30. @brief The passkey name.
  31. */
  32. @property(nonatomic, copy, readonly) NSString *name;
  33. /**
  34. @property credentialID
  35. @brief The credential ID.
  36. */
  37. @property(nonatomic, copy, readonly) NSString *credentialID;
  38. /**
  39. @property clientDataJson
  40. @brief The CollectedClientData object from the authenticator.
  41. */
  42. @property(nonatomic, copy, readonly) NSString *clientDataJson;
  43. /**
  44. @property attestationObject
  45. @brief The attestation object from the authenticator.
  46. */
  47. @property(nonatomic, copy, readonly) NSString *attestationObject;
  48. - (nullable instancetype)initWithIDToken:(NSString *)IDToken
  49. name:(NSString *)name
  50. credentialID:(NSString *)credentialID
  51. clientDataJson:(NSString *)clientDataJson
  52. attestationObject:(NSString *)attestationObject
  53. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration;
  54. @end
  55. NS_ASSUME_NONNULL_END