aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-10-09 10:00:39 -0700
committerGravatar GitHub <noreply@github.com>2017-10-09 10:00:39 -0700
commit20b94f750fc73317fb788f3bbfdd5b712587edc4 (patch)
tree4df0936992e17b6f8a3bfdd8d467c3521319c43e /Firebase/Auth
parentd2efcab55124919e8e3a86ce88fe751b2ae6cd65 (diff)
Delete duplicated FIRAuthOperationType.h (#348)
Diffstat (limited to 'Firebase/Auth')
-rw-r--r--Firebase/Auth/FIRAuthOperationType.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/Firebase/Auth/FIRAuthOperationType.h b/Firebase/Auth/FIRAuthOperationType.h
deleted file mode 100644
index 15d3dd7..0000000
--- a/Firebase/Auth/FIRAuthOperationType.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright 2017 Google
- *
- * 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/Foundation.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- @brief Indicates the type of operation performed for RPCs that support the operation
- parameter.
- */
-typedef NS_ENUM(NSInteger, FIRAuthOperationType) {
- /** Indicates that the operation type is uspecified.
- */
- FIRAuthOperationTypeUnspecified = 0,
-
- /** Indicates that the operation type is sign in or sign up.
- */
- FIRAuthOperationTypeSignUpOrSignIn = 1,
-
- /** Indicates that the operation type is reauthentication.
- */
- FIRAuthOperationTypeReauth = 2,
-
- /** Indicates that the operation type is update.
- */
- FIRAuthOperationTypeUpdate = 3,
-
- /** Indicates that the operation type is link.
- */
- FIRAuthOperationTypeLink = 4,
-};
-
-NS_ASSUME_NONNULL_END