1
0
forked from lug/matterbridge

Add initial Microsoft Teams support

Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
This commit is contained in:
Wim
2019-12-26 23:12:28 +01:00
parent 3af0dc3b3a
commit 795a8705c3
3362 changed files with 229502 additions and 22 deletions

View File

@@ -0,0 +1,29 @@
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// GroupPolicyDefinitionFile The entity represents an ADMX (Administrative Template) XML file. The ADMX file contains a collection of group policy definitions and their locations by category path. The group policy definition file also contains the languages supported as determined by the language dependent ADML (Administrative Template) language files.
type GroupPolicyDefinitionFile struct {
// Entity is the base model of GroupPolicyDefinitionFile
Entity
// DisplayName The localized friendly name of the ADMX file.
DisplayName *string `json:"displayName,omitempty"`
// Description The localized description of the policy settings in the ADMX file. The default value is empty.
Description *string `json:"description,omitempty"`
// LanguageCodes The supported language codes for the ADMX file.
LanguageCodes []string `json:"languageCodes,omitempty"`
// TargetPrefix Specifies the logical name that refers to the namespace within the ADMX file.
TargetPrefix *string `json:"targetPrefix,omitempty"`
// TargetNamespace Specifies the URI used to identify the namespace within the ADMX file.
TargetNamespace *string `json:"targetNamespace,omitempty"`
// PolicyType Specifies the type of group policy.
PolicyType *GroupPolicyType `json:"policyType,omitempty"`
// Revision The revision version associated with the file.
Revision *string `json:"revision,omitempty"`
// LastModifiedDateTime The date and time the entity was last modified.
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// Definitions undocumented
Definitions []GroupPolicyDefinition `json:"definitions,omitempty"`
}