Class Article
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.Article
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Article.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Body.The Created Date Time.The Image Url.The Indicators.The Is Featured.The Last Updated Date Time.The Summary.The Tags.The Title. -
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
-
body
The Body. Formatted article contents. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date and time when this article was created. 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. -
imageUrl
The Image Url. URL of the header image for this article, used for display purposes. -
isFeatured
@SerializedName(value="isFeatured", alternate="IsFeatured") @Expose @Nullable public Boolean isFeaturedThe Is Featured. Indicates whether this article is currently featured by Microsoft. -
lastUpdatedDateTime
@SerializedName(value="lastUpdatedDateTime", alternate="LastUpdatedDateTime") @Expose @Nullable public OffsetDateTime lastUpdatedDateTimeThe Last Updated Date Time. The most recent date and time when this article was updated. 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. -
summary
@SerializedName(value="summary", alternate="Summary") @Expose @Nullable public FormattedContent summaryThe Summary. A quick summary of this article. -
tags
The Tags. Tags for this article, communicating keywords, or key concepts. -
title
The Title. The title of this article. -
indicators
The Indicators. Indicators related to this article.
-
-
Constructor Details
-
Article
public Article()
-
-
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
-