mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
52 lines
3.7 KiB
Go
52 lines
3.7 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
||
package msgraph
|
||
|
||
// IntuneBrand undocumented
|
||
type IntuneBrand struct {
|
||
// Object is the base model of IntuneBrand
|
||
Object
|
||
// DisplayName Company/organization name that is displayed to end users.
|
||
DisplayName *string `json:"displayName,omitempty"`
|
||
// ThemeColor Primary theme color used in the Company Portal applications and web portal.
|
||
ThemeColor *RgbColor `json:"themeColor,omitempty"`
|
||
// ShowLogo Boolean that represents whether the administrator-supplied logo images are shown or not shown.
|
||
ShowLogo *bool `json:"showLogo,omitempty"`
|
||
// LightBackgroundLogo Logo image displayed in Company Portal apps which have a light background behind the logo.
|
||
LightBackgroundLogo *MimeContent `json:"lightBackgroundLogo,omitempty"`
|
||
// DarkBackgroundLogo Logo image displayed in Company Portal apps which have a dark background behind the logo.
|
||
DarkBackgroundLogo *MimeContent `json:"darkBackgroundLogo,omitempty"`
|
||
// ShowNameNextToLogo Boolean that represents whether the administrator-supplied display name will be shown next to the logo image.
|
||
ShowNameNextToLogo *bool `json:"showNameNextToLogo,omitempty"`
|
||
// LandingPageCustomizedImage Customized image displayed in Company Portal app landing page
|
||
LandingPageCustomizedImage *MimeContent `json:"landingPageCustomizedImage,omitempty"`
|
||
// ShowDisplayNameNextToLogo Boolean that represents whether the administrator-supplied display name will be shown next to the logo image.
|
||
ShowDisplayNameNextToLogo *bool `json:"showDisplayNameNextToLogo,omitempty"`
|
||
// ContactITName Name of the person/organization responsible for IT support.
|
||
ContactITName *string `json:"contactITName,omitempty"`
|
||
// ContactITPhoneNumber Phone number of the person/organization responsible for IT support.
|
||
ContactITPhoneNumber *string `json:"contactITPhoneNumber,omitempty"`
|
||
// ContactITEmailAddress Email address of the person/organization responsible for IT support.
|
||
ContactITEmailAddress *string `json:"contactITEmailAddress,omitempty"`
|
||
// ContactITNotes Text comments regarding the person/organization responsible for IT support.
|
||
ContactITNotes *string `json:"contactITNotes,omitempty"`
|
||
// OnlineSupportSiteURL URL to the company/organization’s IT helpdesk site.
|
||
OnlineSupportSiteURL *string `json:"onlineSupportSiteUrl,omitempty"`
|
||
// OnlineSupportSiteName Display name of the company/organization’s IT helpdesk site.
|
||
OnlineSupportSiteName *string `json:"onlineSupportSiteName,omitempty"`
|
||
// PrivacyURL URL to the company/organization’s privacy policy.
|
||
PrivacyURL *string `json:"privacyUrl,omitempty"`
|
||
// CustomPrivacyMessage Custom privacy message.
|
||
CustomPrivacyMessage *string `json:"customPrivacyMessage,omitempty"`
|
||
// IsRemoveDeviceDisabled Boolean that represents whether the adminsistrator has disabled the 'Remove Device' action on corporate owned devices.
|
||
IsRemoveDeviceDisabled *bool `json:"isRemoveDeviceDisabled,omitempty"`
|
||
// IsFactoryResetDisabled Boolean that represents whether the adminsistrator has disabled the 'Factory Reset' action on corporate owned devices.
|
||
IsFactoryResetDisabled *bool `json:"isFactoryResetDisabled,omitempty"`
|
||
// CompanyPortalBlockedActions Collection of blocked actions on the company portal as per platform and device ownership types.
|
||
CompanyPortalBlockedActions []CompanyPortalBlockedAction `json:"companyPortalBlockedActions,omitempty"`
|
||
// ShowAzureADEnterpriseApps Boolean that indicates if AzureAD Enterprise Apps will be shown in Company Portal
|
||
ShowAzureADEnterpriseApps *bool `json:"showAzureADEnterpriseApps,omitempty"`
|
||
// ShowOfficeWebApps Boolean that indicates if Office WebApps will be shown in Company Portal
|
||
ShowOfficeWebApps *bool `json:"showOfficeWebApps,omitempty"`
|
||
}
|