github.com/yaegashi/msgraph.go@v0.1.4/beta/EnumPlatform.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Platform undocumented
     6  type Platform string
     7  
     8  const (
     9  	// PlatformVUnknown undocumented
    10  	PlatformVUnknown Platform = "unknown"
    11  	// PlatformVIOS undocumented
    12  	PlatformVIOS Platform = "ios"
    13  	// PlatformVAndroid undocumented
    14  	PlatformVAndroid Platform = "android"
    15  	// PlatformVWindows undocumented
    16  	PlatformVWindows Platform = "windows"
    17  	// PlatformVWindowsMobile undocumented
    18  	PlatformVWindowsMobile Platform = "windowsMobile"
    19  	// PlatformVMacOS undocumented
    20  	PlatformVMacOS Platform = "macOS"
    21  )
    22  
    23  var (
    24  	// PlatformPUnknown is a pointer to PlatformVUnknown
    25  	PlatformPUnknown = &_PlatformPUnknown
    26  	// PlatformPIOS is a pointer to PlatformVIOS
    27  	PlatformPIOS = &_PlatformPIOS
    28  	// PlatformPAndroid is a pointer to PlatformVAndroid
    29  	PlatformPAndroid = &_PlatformPAndroid
    30  	// PlatformPWindows is a pointer to PlatformVWindows
    31  	PlatformPWindows = &_PlatformPWindows
    32  	// PlatformPWindowsMobile is a pointer to PlatformVWindowsMobile
    33  	PlatformPWindowsMobile = &_PlatformPWindowsMobile
    34  	// PlatformPMacOS is a pointer to PlatformVMacOS
    35  	PlatformPMacOS = &_PlatformPMacOS
    36  )
    37  
    38  var (
    39  	_PlatformPUnknown       = PlatformVUnknown
    40  	_PlatformPIOS           = PlatformVIOS
    41  	_PlatformPAndroid       = PlatformVAndroid
    42  	_PlatformPWindows       = PlatformVWindows
    43  	_PlatformPWindowsMobile = PlatformVWindowsMobile
    44  	_PlatformPMacOS         = PlatformVMacOS
    45  )