| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // Copyright 2023 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import Foundation
- /**
- @brief Operations which can be performed with action codes.
- */
- @objc(FIRActionCodeOperation) public enum ActionCodeOperation: Int, @unchecked Sendable {
- /** Action code for unknown operation. */
- case unknown = 0
- /** Action code for password reset operation. */
- case passwordReset = 1
- /** Action code for verify email operation. */
- case verifyEmail = 2
- /** Action code for recover email operation. */
- case recoverEmail = 3
- /** Action code for email link operation. */
- case emailLink = 4
- /** Action code for verifying and changing email */
- case verifyAndChangeEmail = 5
- /** Action code for reverting second factor addition */
- case revertSecondFactorAddition = 6
- }
|