Package com.microsoft.graph.models
Class Conversation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.Conversation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class Conversation
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Conversation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Has Attachments.The Last Delivered Date Time.The Preview.The Threads.The Topic.The Unique Senders. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
hasAttachments
@SerializedName(value="hasAttachments", alternate="HasAttachments") @Expose @Nullable public Boolean hasAttachmentsThe Has Attachments. Indicates whether any of the posts within this Conversation has at least one attachment. Supports $filter (eq, ne) and $search. -
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 -
preview
The Preview. A short summary from the body of the latest post in this conversation. Supports $filter (eq, ne, le, ge). -
topic
The Topic. The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. -
uniqueSenders
@SerializedName(value="uniqueSenders", alternate="UniqueSenders") @Expose @Nullable public List<String> uniqueSendersThe Unique Senders. All the users that sent a message to this Conversation. -
threads
@SerializedName(value="threads", alternate="Threads") @Expose @Nullable public ConversationThreadCollectionPage threadsThe Threads. A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable.
-
-
Constructor Details
-
Conversation
public Conversation()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-