Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Template Source: BaseEntity.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;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.Recipient;
import com.microsoft.graph.models.Importance;
import com.microsoft.graph.models.MessageActionFlag;
import com.microsoft.graph.models.Sensitivity;
import com.microsoft.graph.models.SizeRange;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Message Rule Predicates.
*/
public class MessageRulePredicates implements IJsonBackedObject {
/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}
/**
* The Body Contains.
* Represents the strings that should appear in the body of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "bodyContains", alternate = {"BodyContains"})
@Expose
@Nullable
public java.util.List bodyContains;
/**
* The Body Or Subject Contains.
* Represents the strings that should appear in the body or subject of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "bodyOrSubjectContains", alternate = {"BodyOrSubjectContains"})
@Expose
@Nullable
public java.util.List bodyOrSubjectContains;
/**
* The Categories.
* Represents the categories that an incoming message should be labeled with in order for the condition or exception to apply.
*/
@SerializedName(value = "categories", alternate = {"Categories"})
@Expose
@Nullable
public java.util.List categories;
/**
* The From Addresses.
* Represents the specific sender email addresses of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "fromAddresses", alternate = {"FromAddresses"})
@Expose
@Nullable
public java.util.List fromAddresses;
/**
* The Has Attachments.
* Indicates whether an incoming message must have attachments in order for the condition or exception to apply.
*/
@SerializedName(value = "hasAttachments", alternate = {"HasAttachments"})
@Expose
@Nullable
public Boolean hasAttachments;
/**
* The Header Contains.
* Represents the strings that appear in the headers of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "headerContains", alternate = {"HeaderContains"})
@Expose
@Nullable
public java.util.List headerContains;
/**
* The Importance.
* The importance that is stamped on an incoming message in order for the condition or exception to apply: low, normal, high.
*/
@SerializedName(value = "importance", alternate = {"Importance"})
@Expose
@Nullable
public Importance importance;
/**
* The Is Approval Request.
* Indicates whether an incoming message must be an approval request in order for the condition or exception to apply.
*/
@SerializedName(value = "isApprovalRequest", alternate = {"IsApprovalRequest"})
@Expose
@Nullable
public Boolean isApprovalRequest;
/**
* The Is Automatic Forward.
* Indicates whether an incoming message must be automatically forwarded in order for the condition or exception to apply.
*/
@SerializedName(value = "isAutomaticForward", alternate = {"IsAutomaticForward"})
@Expose
@Nullable
public Boolean isAutomaticForward;
/**
* The Is Automatic Reply.
* Indicates whether an incoming message must be an auto reply in order for the condition or exception to apply.
*/
@SerializedName(value = "isAutomaticReply", alternate = {"IsAutomaticReply"})
@Expose
@Nullable
public Boolean isAutomaticReply;
/**
* The Is Encrypted.
* Indicates whether an incoming message must be encrypted in order for the condition or exception to apply.
*/
@SerializedName(value = "isEncrypted", alternate = {"IsEncrypted"})
@Expose
@Nullable
public Boolean isEncrypted;
/**
* The Is Meeting Request.
* Indicates whether an incoming message must be a meeting request in order for the condition or exception to apply.
*/
@SerializedName(value = "isMeetingRequest", alternate = {"IsMeetingRequest"})
@Expose
@Nullable
public Boolean isMeetingRequest;
/**
* The Is Meeting Response.
* Indicates whether an incoming message must be a meeting response in order for the condition or exception to apply.
*/
@SerializedName(value = "isMeetingResponse", alternate = {"IsMeetingResponse"})
@Expose
@Nullable
public Boolean isMeetingResponse;
/**
* The Is Non Delivery Report.
* Indicates whether an incoming message must be a non-delivery report in order for the condition or exception to apply.
*/
@SerializedName(value = "isNonDeliveryReport", alternate = {"IsNonDeliveryReport"})
@Expose
@Nullable
public Boolean isNonDeliveryReport;
/**
* The Is Permission Controlled.
* Indicates whether an incoming message must be permission controlled (RMS-protected) in order for the condition or exception to apply.
*/
@SerializedName(value = "isPermissionControlled", alternate = {"IsPermissionControlled"})
@Expose
@Nullable
public Boolean isPermissionControlled;
/**
* The Is Read Receipt.
* Indicates whether an incoming message must be a read receipt in order for the condition or exception to apply.
*/
@SerializedName(value = "isReadReceipt", alternate = {"IsReadReceipt"})
@Expose
@Nullable
public Boolean isReadReceipt;
/**
* The Is Signed.
* Indicates whether an incoming message must be S/MIME-signed in order for the condition or exception to apply.
*/
@SerializedName(value = "isSigned", alternate = {"IsSigned"})
@Expose
@Nullable
public Boolean isSigned;
/**
* The Is Voicemail.
* Indicates whether an incoming message must be a voice mail in order for the condition or exception to apply.
*/
@SerializedName(value = "isVoicemail", alternate = {"IsVoicemail"})
@Expose
@Nullable
public Boolean isVoicemail;
/**
* The Message Action Flag.
* Represents the flag-for-action value that appears on an incoming message in order for the condition or exception to apply. The possible values are: any, call, doNotForward, followUp, fyi, forward, noResponseNecessary, read, reply, replyToAll, review.
*/
@SerializedName(value = "messageActionFlag", alternate = {"MessageActionFlag"})
@Expose
@Nullable
public MessageActionFlag messageActionFlag;
/**
* The Not Sent To Me.
* Indicates whether the owner of the mailbox must not be a recipient of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "notSentToMe", alternate = {"NotSentToMe"})
@Expose
@Nullable
public Boolean notSentToMe;
/**
* The Recipient Contains.
* Represents the strings that appear in either the toRecipients or ccRecipients properties of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "recipientContains", alternate = {"RecipientContains"})
@Expose
@Nullable
public java.util.List recipientContains;
/**
* The Sender Contains.
* Represents the strings that appear in the from property of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "senderContains", alternate = {"SenderContains"})
@Expose
@Nullable
public java.util.List senderContains;
/**
* The Sensitivity.
* Represents the sensitivity level that must be stamped on an incoming message in order for the condition or exception to apply. The possible values are: normal, personal, private, confidential.
*/
@SerializedName(value = "sensitivity", alternate = {"Sensitivity"})
@Expose
@Nullable
public Sensitivity sensitivity;
/**
* The Sent Cc Me.
* Indicates whether the owner of the mailbox must be in the ccRecipients property of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "sentCcMe", alternate = {"SentCcMe"})
@Expose
@Nullable
public Boolean sentCcMe;
/**
* The Sent Only To Me.
* Indicates whether the owner of the mailbox must be the only recipient in an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "sentOnlyToMe", alternate = {"SentOnlyToMe"})
@Expose
@Nullable
public Boolean sentOnlyToMe;
/**
* The Sent To Addresses.
* Represents the email addresses that an incoming message must have been sent to in order for the condition or exception to apply.
*/
@SerializedName(value = "sentToAddresses", alternate = {"SentToAddresses"})
@Expose
@Nullable
public java.util.List sentToAddresses;
/**
* The Sent To Me.
* Indicates whether the owner of the mailbox must be in the toRecipients property of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "sentToMe", alternate = {"SentToMe"})
@Expose
@Nullable
public Boolean sentToMe;
/**
* The Sent To Or Cc Me.
* Indicates whether the owner of the mailbox must be in either a toRecipients or ccRecipients property of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "sentToOrCcMe", alternate = {"SentToOrCcMe"})
@Expose
@Nullable
public Boolean sentToOrCcMe;
/**
* The Subject Contains.
* Represents the strings that appear in the subject of an incoming message in order for the condition or exception to apply.
*/
@SerializedName(value = "subjectContains", alternate = {"SubjectContains"})
@Expose
@Nullable
public java.util.List subjectContains;
/**
* The Within Size Range.
* Represents the minimum and maximum sizes (in kilobytes) that an incoming message must fall in between in order for the condition or exception to apply.
*/
@SerializedName(value = "withinSizeRange", alternate = {"WithinSizeRange"})
@Expose
@Nullable
public SizeRange withinSizeRange;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}