diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go new file mode 100644 index 00000000..6fd0b596 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go @@ -0,0 +1,35 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// PhysicalAddressType undocumented +type PhysicalAddressType string + +const ( + // PhysicalAddressTypeVUnknown undocumented + PhysicalAddressTypeVUnknown PhysicalAddressType = "unknown" + // PhysicalAddressTypeVHome undocumented + PhysicalAddressTypeVHome PhysicalAddressType = "home" + // PhysicalAddressTypeVBusiness undocumented + PhysicalAddressTypeVBusiness PhysicalAddressType = "business" + // PhysicalAddressTypeVOther undocumented + PhysicalAddressTypeVOther PhysicalAddressType = "other" +) + +var ( + // PhysicalAddressTypePUnknown is a pointer to PhysicalAddressTypeVUnknown + PhysicalAddressTypePUnknown = &_PhysicalAddressTypePUnknown + // PhysicalAddressTypePHome is a pointer to PhysicalAddressTypeVHome + PhysicalAddressTypePHome = &_PhysicalAddressTypePHome + // PhysicalAddressTypePBusiness is a pointer to PhysicalAddressTypeVBusiness + PhysicalAddressTypePBusiness = &_PhysicalAddressTypePBusiness + // PhysicalAddressTypePOther is a pointer to PhysicalAddressTypeVOther + PhysicalAddressTypePOther = &_PhysicalAddressTypePOther +) + +var ( + _PhysicalAddressTypePUnknown = PhysicalAddressTypeVUnknown + _PhysicalAddressTypePHome = PhysicalAddressTypeVHome + _PhysicalAddressTypePBusiness = PhysicalAddressTypeVBusiness + _PhysicalAddressTypePOther = PhysicalAddressTypeVOther +) |