com.microsoft.graph.models.NotificationTemplateBrandingOptions Maven / Gradle / Ivy
// Template Source: Enum.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
/**
* The Enum Notification Template Branding Options.
*/
public enum NotificationTemplateBrandingOptions
{
/**
* none
*/
NONE,
/**
* include Company Logo
*/
INCLUDE_COMPANY_LOGO,
/**
* include Company Name
*/
INCLUDE_COMPANY_NAME,
/**
* include Contact Information
*/
INCLUDE_CONTACT_INFORMATION,
/**
* include Company Portal Link
*/
INCLUDE_COMPANY_PORTAL_LINK,
/**
* include Device Details
*/
INCLUDE_DEVICE_DETAILS,
/**
* unknown Future Value
*/
UNKNOWN_FUTURE_VALUE,
/**
* For NotificationTemplateBrandingOptions values that were not expected from the service
*/
UNEXPECTED_VALUE
}