blob: 8b5e8846116ae3dd8d629f8110e66961d13de5d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ApplicationTemplate undocumented
type ApplicationTemplate struct {
// Entity is the base model of ApplicationTemplate
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// HomePageURL undocumented
HomePageURL *string `json:"homePageUrl,omitempty"`
// SupportedSingleSignOnModes undocumented
SupportedSingleSignOnModes []string `json:"supportedSingleSignOnModes,omitempty"`
// SupportedProvisioningTypes undocumented
SupportedProvisioningTypes []string `json:"supportedProvisioningTypes,omitempty"`
// LogoURL undocumented
LogoURL *string `json:"logoUrl,omitempty"`
// Categories undocumented
Categories []string `json:"categories,omitempty"`
// Publisher undocumented
Publisher *string `json:"publisher,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
}
|