Package com.microsoft.graph.models
Class ConversationThread
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.ConversationThread
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ConversationThread
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Conversation Thread.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Cc Recipients.The Has Attachments.The Is Locked.The Last Delivered Date Time.The Posts.The Preview.The Topic.The To Recipients.The Unique Senders. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
ccRecipients
@SerializedName(value="ccRecipients", alternate="CcRecipients") @Expose @Nullable public List<Recipient> ccRecipientsThe Cc Recipients. The Cc: recipients for the thread. Returned only on $select. -
hasAttachments
@SerializedName(value="hasAttachments", alternate="HasAttachments") @Expose @Nullable public Boolean hasAttachmentsThe Has Attachments. Indicates whether any of the posts within this thread has at least one attachment. Returned by default. -
isLocked
The Is Locked. Indicates if the thread is locked. Returned by default. -
lastDeliveredDateTime
@SerializedName(value="lastDeliveredDateTime", alternate="LastDeliveredDateTime") @Expose @Nullable public OffsetDateTime lastDeliveredDateTimeThe Last Delivered Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.Returned by default. -
preview
The Preview. A short summary from the body of the latest post in this conversation. Returned by default. -
topic
The Topic. The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. Returned by default. -
toRecipients
@SerializedName(value="toRecipients", alternate="ToRecipients") @Expose @Nullable public List<Recipient> toRecipientsThe To Recipients. The To: recipients for the thread. Returned only on $select. -
uniqueSenders
@SerializedName(value="uniqueSenders", alternate="UniqueSenders") @Expose @Nullable public List<String> uniqueSendersThe Unique Senders. All the users that sent a message to this thread. Returned by default. -
posts
The Posts.
-
-
Constructor Details
-
ConversationThread
public ConversationThread()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-