blob: eb9c0a8313ef01c6a3f9aa578ca932f0e9c583d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// TeamsApp undocumented
type TeamsApp struct {
// Entity is the base model of TeamsApp
Entity
// ExternalID undocumented
ExternalID *string `json:"externalId,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// DistributionMethod undocumented
DistributionMethod *TeamsAppDistributionMethod `json:"distributionMethod,omitempty"`
// AppDefinitions undocumented
AppDefinitions []TeamsAppDefinition `json:"appDefinitions,omitempty"`
}
|