mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// MobileAppPublishingState undocumented
|
|
type MobileAppPublishingState int
|
|
|
|
const (
|
|
// MobileAppPublishingStateVNotPublished undocumented
|
|
MobileAppPublishingStateVNotPublished MobileAppPublishingState = 0
|
|
// MobileAppPublishingStateVProcessing undocumented
|
|
MobileAppPublishingStateVProcessing MobileAppPublishingState = 1
|
|
// MobileAppPublishingStateVPublished undocumented
|
|
MobileAppPublishingStateVPublished MobileAppPublishingState = 2
|
|
)
|
|
|
|
// MobileAppPublishingStatePNotPublished returns a pointer to MobileAppPublishingStateVNotPublished
|
|
func MobileAppPublishingStatePNotPublished() *MobileAppPublishingState {
|
|
v := MobileAppPublishingStateVNotPublished
|
|
return &v
|
|
}
|
|
|
|
// MobileAppPublishingStatePProcessing returns a pointer to MobileAppPublishingStateVProcessing
|
|
func MobileAppPublishingStatePProcessing() *MobileAppPublishingState {
|
|
v := MobileAppPublishingStateVProcessing
|
|
return &v
|
|
}
|
|
|
|
// MobileAppPublishingStatePPublished returns a pointer to MobileAppPublishingStateVPublished
|
|
func MobileAppPublishingStatePPublished() *MobileAppPublishingState {
|
|
v := MobileAppPublishingStateVPublished
|
|
return &v
|
|
}
|