github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelIntune.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // IntuneBrand undocumented
     6  type IntuneBrand struct {
     7  	// Object is the base model of IntuneBrand
     8  	Object
     9  	// DisplayName Company/organization name that is displayed to end users.
    10  	DisplayName *string `json:"displayName,omitempty"`
    11  	// ContactITName Name of the person/organization responsible for IT support.
    12  	ContactITName *string `json:"contactITName,omitempty"`
    13  	// ContactITPhoneNumber Phone number of the person/organization responsible for IT support.
    14  	ContactITPhoneNumber *string `json:"contactITPhoneNumber,omitempty"`
    15  	// ContactITEmailAddress Email address of the person/organization responsible for IT support.
    16  	ContactITEmailAddress *string `json:"contactITEmailAddress,omitempty"`
    17  	// ContactITNotes Text comments regarding the person/organization responsible for IT support.
    18  	ContactITNotes *string `json:"contactITNotes,omitempty"`
    19  	// PrivacyURL URL to the company/organization’s privacy policy.
    20  	PrivacyURL *string `json:"privacyUrl,omitempty"`
    21  	// OnlineSupportSiteURL URL to the company/organization’s IT helpdesk site.
    22  	OnlineSupportSiteURL *string `json:"onlineSupportSiteUrl,omitempty"`
    23  	// OnlineSupportSiteName Display name of the company/organization’s IT helpdesk site.
    24  	OnlineSupportSiteName *string `json:"onlineSupportSiteName,omitempty"`
    25  	// ThemeColor Primary theme color used in the Company Portal applications and web portal.
    26  	ThemeColor *RgbColor `json:"themeColor,omitempty"`
    27  	// ShowLogo Boolean that represents whether the administrator-supplied logo images are shown or not shown.
    28  	ShowLogo *bool `json:"showLogo,omitempty"`
    29  	// LightBackgroundLogo Logo image displayed in Company Portal apps which have a light background behind the logo.
    30  	LightBackgroundLogo *MimeContent `json:"lightBackgroundLogo,omitempty"`
    31  	// DarkBackgroundLogo Logo image displayed in Company Portal apps which have a dark background behind the logo.
    32  	DarkBackgroundLogo *MimeContent `json:"darkBackgroundLogo,omitempty"`
    33  	// ShowNameNextToLogo Boolean that represents whether the administrator-supplied display name will be shown next to the logo image.
    34  	ShowNameNextToLogo *bool `json:"showNameNextToLogo,omitempty"`
    35  	// ShowDisplayNameNextToLogo Boolean that represents whether the administrator-supplied display name will be shown next to the logo image.
    36  	ShowDisplayNameNextToLogo *bool `json:"showDisplayNameNextToLogo,omitempty"`
    37  }