mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
34 lines
954 B
Go
34 lines
954 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// AppLogUploadState undocumented
|
||
|
type AppLogUploadState int
|
||
|
|
||
|
const (
|
||
|
// AppLogUploadStateVPending undocumented
|
||
|
AppLogUploadStateVPending AppLogUploadState = 0
|
||
|
// AppLogUploadStateVCompleted undocumented
|
||
|
AppLogUploadStateVCompleted AppLogUploadState = 1
|
||
|
// AppLogUploadStateVFailed undocumented
|
||
|
AppLogUploadStateVFailed AppLogUploadState = 2
|
||
|
)
|
||
|
|
||
|
// AppLogUploadStatePPending returns a pointer to AppLogUploadStateVPending
|
||
|
func AppLogUploadStatePPending() *AppLogUploadState {
|
||
|
v := AppLogUploadStateVPending
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// AppLogUploadStatePCompleted returns a pointer to AppLogUploadStateVCompleted
|
||
|
func AppLogUploadStatePCompleted() *AppLogUploadState {
|
||
|
v := AppLogUploadStateVCompleted
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// AppLogUploadStatePFailed returns a pointer to AppLogUploadStateVFailed
|
||
|
func AppLogUploadStatePFailed() *AppLogUploadState {
|
||
|
v := AppLogUploadStateVFailed
|
||
|
return &v
|
||
|
}
|