forked from xamarin/GoogleApisForiOSComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnums.cs
More file actions
51 lines (47 loc) · 727 Bytes
/
Enums.cs
File metadata and controls
51 lines (47 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using ObjCRuntime;
namespace Firebase.CloudFirestore
{
[Native]
public enum DocumentChangeType : long
{
Added,
Modified,
Removed
}
[Native]
public enum ServerTimestampBehavior : long
{
None,
Estimate,
Previous
}
[Native]
public enum FirestoreErrorCode : long
{
Ok = 0,
Cancelled = 1,
Unknown = 2,
InvalidArgument = 3,
DeadlineExceeded = 4,
NotFound = 5,
AlreadyExists = 6,
PermissionDenied = 7,
ResourceExhausted = 8,
FailedPrecondition = 9,
Aborted = 10,
OutOfRange = 11,
Unimplemented = 12,
Internal = 13,
Unavailable = 14,
DataLoss = 15,
Unauthenticated = 16
}
[Native]
public enum FirestoreSource : ulong
{
Default,
Server,
Cache
}
}