blob: 687bf26ff9700178eb41984b60c6af09507742d3 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AgentStatus undocumented
type AgentStatus int
const (
// AgentStatusVActive undocumented
AgentStatusVActive AgentStatus = 0
// AgentStatusVInactive undocumented
AgentStatusVInactive AgentStatus = 1
)
// AgentStatusPActive returns a pointer to AgentStatusVActive
func AgentStatusPActive() *AgentStatus {
v := AgentStatusVActive
return &v
}
// AgentStatusPInactive returns a pointer to AgentStatusVInactive
func AgentStatusPInactive() *AgentStatus {
v := AgentStatusVInactive
return &v
}
|