blob: 80ea37c6ee8116c3a3d756b6d2c79cd2de9f7b6e (
plain) (
blame)
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
52
53
54
55
56
57
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AndroidForWorkSyncStatus undocumented
type AndroidForWorkSyncStatus int
const (
// AndroidForWorkSyncStatusVSuccess undocumented
AndroidForWorkSyncStatusVSuccess AndroidForWorkSyncStatus = 0
// AndroidForWorkSyncStatusVCredentialsNotValid undocumented
AndroidForWorkSyncStatusVCredentialsNotValid AndroidForWorkSyncStatus = 1
// AndroidForWorkSyncStatusVAndroidForWorkAPIError undocumented
AndroidForWorkSyncStatusVAndroidForWorkAPIError AndroidForWorkSyncStatus = 2
// AndroidForWorkSyncStatusVManagementServiceError undocumented
AndroidForWorkSyncStatusVManagementServiceError AndroidForWorkSyncStatus = 3
// AndroidForWorkSyncStatusVUnknownError undocumented
AndroidForWorkSyncStatusVUnknownError AndroidForWorkSyncStatus = 4
// AndroidForWorkSyncStatusVNone undocumented
AndroidForWorkSyncStatusVNone AndroidForWorkSyncStatus = 5
)
// AndroidForWorkSyncStatusPSuccess returns a pointer to AndroidForWorkSyncStatusVSuccess
func AndroidForWorkSyncStatusPSuccess() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVSuccess
return &v
}
// AndroidForWorkSyncStatusPCredentialsNotValid returns a pointer to AndroidForWorkSyncStatusVCredentialsNotValid
func AndroidForWorkSyncStatusPCredentialsNotValid() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVCredentialsNotValid
return &v
}
// AndroidForWorkSyncStatusPAndroidForWorkAPIError returns a pointer to AndroidForWorkSyncStatusVAndroidForWorkAPIError
func AndroidForWorkSyncStatusPAndroidForWorkAPIError() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVAndroidForWorkAPIError
return &v
}
// AndroidForWorkSyncStatusPManagementServiceError returns a pointer to AndroidForWorkSyncStatusVManagementServiceError
func AndroidForWorkSyncStatusPManagementServiceError() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVManagementServiceError
return &v
}
// AndroidForWorkSyncStatusPUnknownError returns a pointer to AndroidForWorkSyncStatusVUnknownError
func AndroidForWorkSyncStatusPUnknownError() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVUnknownError
return &v
}
// AndroidForWorkSyncStatusPNone returns a pointer to AndroidForWorkSyncStatusVNone
func AndroidForWorkSyncStatusPNone() *AndroidForWorkSyncStatus {
v := AndroidForWorkSyncStatusVNone
return &v
}
|