summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-03-08 17:08:18 +0100
committerGitHub <noreply@github.com>2020-03-08 17:08:18 +0100
commit9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch)
treee8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go
parent2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff)
downloadmatterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz
matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2
matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354 go get doesn't honor the go.mod replace options.
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go63
1 files changed, 63 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go
new file mode 100644
index 00000000..a5aa919b
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go
@@ -0,0 +1,63 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// IntuneBrandingProfile This entity contains data which is used in customizing the tenant level appearance of the Company Portal applications as well as the end user web portal.
+type IntuneBrandingProfile struct {
+ // Entity is the base model of IntuneBrandingProfile
+ Entity
+ // ProfileName Name of the profile
+ ProfileName *string `json:"profileName,omitempty"`
+ // ProfileDescription Description of the profile
+ ProfileDescription *string `json:"profileDescription,omitempty"`
+ // IsDefaultProfile Boolean that represents whether the profile is used as default or not
+ IsDefaultProfile *bool `json:"isDefaultProfile,omitempty"`
+ // CreatedDateTime Time when the BrandingProfile was created
+ CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
+ // LastModifiedDateTime Time when the BrandingProfile was last modified
+ LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
+ // 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
+ ShowLogo *bool `json:"showLogo,omitempty"`
+ // ShowDisplayNameNextToLogo Boolean that represents whether the administrator-supplied display name will be shown next to the logo image or not
+ ShowDisplayNameNextToLogo *bool `json:"showDisplayNameNextToLogo,omitempty"`
+ // ThemeColorLogo Logo image displayed in Company Portal apps which have a theme color background behind the logo
+ ThemeColorLogo *MimeContent `json:"themeColorLogo,omitempty"`
+ // LightBackgroundLogo Logo image displayed in Company Portal apps which have a light background behind the logo
+ LightBackgroundLogo *MimeContent `json:"lightBackgroundLogo,omitempty"`
+ // LandingPageCustomizedImage Customized image displayed in Company Portal apps landing page
+ LandingPageCustomizedImage *MimeContent `json:"landingPageCustomizedImage,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 E-mail 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 Text comments regarding what the admin has access to on the device
+ 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"`
+ // Assignments undocumented
+ Assignments []IntuneBrandingProfileAssignment `json:"assignments,omitempty"`
+}