mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-10-30 21:37:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			572 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			572 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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
 | |
| }
 | 
