summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/SetupStatusEnum.go
blob: 9d80d981a7f2cba23b4e6a88b64fa22b523983bf (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// SetupStatus undocumented
type SetupStatus int

const (
	// SetupStatusVUnknown undocumented
	SetupStatusVUnknown SetupStatus = 0
	// SetupStatusVNotRegisteredYet undocumented
	SetupStatusVNotRegisteredYet SetupStatus = 1
	// SetupStatusVRegisteredSetupNotStarted undocumented
	SetupStatusVRegisteredSetupNotStarted SetupStatus = 2
	// SetupStatusVRegisteredSetupInProgress undocumented
	SetupStatusVRegisteredSetupInProgress SetupStatus = 3
	// SetupStatusVRegistrationAndSetupCompleted undocumented
	SetupStatusVRegistrationAndSetupCompleted SetupStatus = 4
	// SetupStatusVRegistrationFailed undocumented
	SetupStatusVRegistrationFailed SetupStatus = 5
	// SetupStatusVRegistrationTimedOut undocumented
	SetupStatusVRegistrationTimedOut SetupStatus = 6
	// SetupStatusVDisabled undocumented
	SetupStatusVDisabled SetupStatus = 7
)

// SetupStatusPUnknown returns a pointer to SetupStatusVUnknown
func SetupStatusPUnknown() *SetupStatus {
	v := SetupStatusVUnknown
	return &v
}

// SetupStatusPNotRegisteredYet returns a pointer to SetupStatusVNotRegisteredYet
func SetupStatusPNotRegisteredYet() *SetupStatus {
	v := SetupStatusVNotRegisteredYet
	return &v
}

// SetupStatusPRegisteredSetupNotStarted returns a pointer to SetupStatusVRegisteredSetupNotStarted
func SetupStatusPRegisteredSetupNotStarted() *SetupStatus {
	v := SetupStatusVRegisteredSetupNotStarted
	return &v
}

// SetupStatusPRegisteredSetupInProgress returns a pointer to SetupStatusVRegisteredSetupInProgress
func SetupStatusPRegisteredSetupInProgress() *SetupStatus {
	v := SetupStatusVRegisteredSetupInProgress
	return &v
}

// SetupStatusPRegistrationAndSetupCompleted returns a pointer to SetupStatusVRegistrationAndSetupCompleted
func SetupStatusPRegistrationAndSetupCompleted() *SetupStatus {
	v := SetupStatusVRegistrationAndSetupCompleted
	return &v
}

// SetupStatusPRegistrationFailed returns a pointer to SetupStatusVRegistrationFailed
func SetupStatusPRegistrationFailed() *SetupStatus {
	v := SetupStatusVRegistrationFailed
	return &v
}

// SetupStatusPRegistrationTimedOut returns a pointer to SetupStatusVRegistrationTimedOut
func SetupStatusPRegistrationTimedOut() *SetupStatus {
	v := SetupStatusVRegistrationTimedOut
	return &v
}

// SetupStatusPDisabled returns a pointer to SetupStatusVDisabled
func SetupStatusPDisabled() *SetupStatus {
	v := SetupStatusVDisabled
	return &v
}