mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// EntryExportStatus undocumented
|
|
type EntryExportStatus int
|
|
|
|
const (
|
|
// EntryExportStatusVNoop undocumented
|
|
EntryExportStatusVNoop EntryExportStatus = 0
|
|
// EntryExportStatusVSuccess undocumented
|
|
EntryExportStatusVSuccess EntryExportStatus = 1
|
|
// EntryExportStatusVRetryableError undocumented
|
|
EntryExportStatusVRetryableError EntryExportStatus = 2
|
|
// EntryExportStatusVPermanentError undocumented
|
|
EntryExportStatusVPermanentError EntryExportStatus = 3
|
|
// EntryExportStatusVError undocumented
|
|
EntryExportStatusVError EntryExportStatus = 4
|
|
)
|
|
|
|
// EntryExportStatusPNoop returns a pointer to EntryExportStatusVNoop
|
|
func EntryExportStatusPNoop() *EntryExportStatus {
|
|
v := EntryExportStatusVNoop
|
|
return &v
|
|
}
|
|
|
|
// EntryExportStatusPSuccess returns a pointer to EntryExportStatusVSuccess
|
|
func EntryExportStatusPSuccess() *EntryExportStatus {
|
|
v := EntryExportStatusVSuccess
|
|
return &v
|
|
}
|
|
|
|
// EntryExportStatusPRetryableError returns a pointer to EntryExportStatusVRetryableError
|
|
func EntryExportStatusPRetryableError() *EntryExportStatus {
|
|
v := EntryExportStatusVRetryableError
|
|
return &v
|
|
}
|
|
|
|
// EntryExportStatusPPermanentError returns a pointer to EntryExportStatusVPermanentError
|
|
func EntryExportStatusPPermanentError() *EntryExportStatus {
|
|
v := EntryExportStatusVPermanentError
|
|
return &v
|
|
}
|
|
|
|
// EntryExportStatusPError returns a pointer to EntryExportStatusVError
|
|
func EntryExportStatusPError() *EntryExportStatus {
|
|
v := EntryExportStatusVError
|
|
return &v
|
|
}
|