mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
26 lines
764 B
Go
26 lines
764 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// DomainNameSource undocumented
|
||
|
type DomainNameSource int
|
||
|
|
||
|
const (
|
||
|
// DomainNameSourceVFullDomainName undocumented
|
||
|
DomainNameSourceVFullDomainName DomainNameSource = 0
|
||
|
// DomainNameSourceVNetBiosDomainName undocumented
|
||
|
DomainNameSourceVNetBiosDomainName DomainNameSource = 1
|
||
|
)
|
||
|
|
||
|
// DomainNameSourcePFullDomainName returns a pointer to DomainNameSourceVFullDomainName
|
||
|
func DomainNameSourcePFullDomainName() *DomainNameSource {
|
||
|
v := DomainNameSourceVFullDomainName
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DomainNameSourcePNetBiosDomainName returns a pointer to DomainNameSourceVNetBiosDomainName
|
||
|
func DomainNameSourcePNetBiosDomainName() *DomainNameSource {
|
||
|
v := DomainNameSourceVNetBiosDomainName
|
||
|
return &v
|
||
|
}
|