mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-26 23:41:36 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// WindowsPackageInformation undocumented
|
|
type WindowsPackageInformation struct {
|
|
// Object is the base model of WindowsPackageInformation
|
|
Object
|
|
// ApplicableArchitecture The Windows architecture for which this app can run on.
|
|
ApplicableArchitecture *WindowsArchitecture `json:"applicableArchitecture,omitempty"`
|
|
// DisplayName The Display Name.
|
|
DisplayName *string `json:"displayName,omitempty"`
|
|
// IdentityName The Identity Name.
|
|
IdentityName *string `json:"identityName,omitempty"`
|
|
// IdentityPublisher The Identity Publisher.
|
|
IdentityPublisher *string `json:"identityPublisher,omitempty"`
|
|
// IdentityResourceIdentifier The Identity Resource Identifier.
|
|
IdentityResourceIdentifier *string `json:"identityResourceIdentifier,omitempty"`
|
|
// IdentityVersion The Identity Version.
|
|
IdentityVersion *string `json:"identityVersion,omitempty"`
|
|
// MinimumSupportedOperatingSystem The value for the minimum applicable operating system.
|
|
MinimumSupportedOperatingSystem *WindowsMinimumOperatingSystem `json:"minimumSupportedOperatingSystem,omitempty"`
|
|
}
|