diff options
author | Wim <wim@42.be> | 2020-03-08 17:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:08:18 +0100 |
commit | 9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch) | |
tree | e8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go | |
parent | 2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff) | |
download | matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2 matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip |
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354
go get doesn't honor the go.mod replace options.
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go deleted file mode 100644 index 734d7648..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go +++ /dev/null @@ -1,55 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// HardwareInformation undocumented -type HardwareInformation struct { - // Object is the base model of HardwareInformation - Object - // SerialNumber Serial number. - SerialNumber *string `json:"serialNumber,omitempty"` - // TotalStorageSpace Total storage space of the device. - TotalStorageSpace *int `json:"totalStorageSpace,omitempty"` - // FreeStorageSpace Free storage space of the device. - FreeStorageSpace *int `json:"freeStorageSpace,omitempty"` - // Imei IMEI - Imei *string `json:"imei,omitempty"` - // Meid MEID - Meid *string `json:"meid,omitempty"` - // Manufacturer Manufacturer of the device - Manufacturer *string `json:"manufacturer,omitempty"` - // Model Model of the device - Model *string `json:"model,omitempty"` - // PhoneNumber Phone number of the device - PhoneNumber *string `json:"phoneNumber,omitempty"` - // SubscriberCarrier Subscriber carrier of the device - SubscriberCarrier *string `json:"subscriberCarrier,omitempty"` - // CellularTechnology Cellular technology of the device - CellularTechnology *string `json:"cellularTechnology,omitempty"` - // WifiMac WiFi MAC address of the device - WifiMac *string `json:"wifiMac,omitempty"` - // OperatingSystemLanguage Operating system language of the device - OperatingSystemLanguage *string `json:"operatingSystemLanguage,omitempty"` - // IsSupervised Supervised mode of the device - IsSupervised *bool `json:"isSupervised,omitempty"` - // IsEncrypted Encryption status of the device - IsEncrypted *bool `json:"isEncrypted,omitempty"` - // IsSharedDevice Shared iPad - IsSharedDevice *bool `json:"isSharedDevice,omitempty"` - // SharedDeviceCachedUsers All users on the shared Apple device - SharedDeviceCachedUsers []SharedAppleDeviceUser `json:"sharedDeviceCachedUsers,omitempty"` - // TpmSpecificationVersion String that specifies the specification version. - TpmSpecificationVersion *string `json:"tpmSpecificationVersion,omitempty"` - // OperatingSystemEdition String that specifies the OS edition. - OperatingSystemEdition *string `json:"operatingSystemEdition,omitempty"` - // DeviceFullQualifiedDomainName Returns the fully qualified domain name of the device (if any). If the device is not domain-joined, it returns an empty string. - DeviceFullQualifiedDomainName *string `json:"deviceFullQualifiedDomainName,omitempty"` - // DeviceGuardVirtualizationBasedSecurityHardwareRequirementState Virtualization-based security hardware requirement status. - DeviceGuardVirtualizationBasedSecurityHardwareRequirementState *DeviceGuardVirtualizationBasedSecurityHardwareRequirementState `json:"deviceGuardVirtualizationBasedSecurityHardwareRequirementState,omitempty"` - // DeviceGuardVirtualizationBasedSecurityState Virtualization-based security status. - DeviceGuardVirtualizationBasedSecurityState *DeviceGuardVirtualizationBasedSecurityState `json:"deviceGuardVirtualizationBasedSecurityState,omitempty"` - // DeviceGuardLocalSystemAuthorityCredentialGuardState Local System Authority (LSA) credential guard status. - DeviceGuardLocalSystemAuthorityCredentialGuardState *DeviceGuardLocalSystemAuthorityCredentialGuardState `json:"deviceGuardLocalSystemAuthorityCredentialGuardState,omitempty"` - // OsBuildNumber Operating System Build Number on Android device - OsBuildNumber *string `json:"osBuildNumber,omitempty"` -} |