public interface

ArticleDetails

implements ArticleSummary
com.salesforce.android.knowledge.core.model.ArticleDetails

Class Overview

The ArticleDetails expand the ArticleSummary to include the content and additional details about an article. You can fetch ArticleDetails by passing an ArticleDetailRequest to a KnowledgeClient.

Summary

Nested Classes
interface ArticleDetails.Field A ArticleDetails.Field is a piece of information inside an article. 
Public Methods
abstract String getArticleType()
The type of article.
abstract ChatterUser getCreatedBy()
A user object representing the Salesforce User who created the article.
abstract Date getCreatedDate()
The Date the article was created.
abstract List<ArticleDetails.Field> getFields()
Access the ArticleDetails.Field instances for this article.
abstract ChatterUser getLastModifiedBy()
A user object representing the Salesforce User who last modified the article.
abstract Date getLastModifiedDate()
The Date the last time the article was modified.
abstract int getVersionNumber()
The version number increments with each new version of the article that is published.
[Expand]
Inherited Methods
From interface com.salesforce.android.knowledge.core.model.ArticleSummary

Public Methods

public abstract String getArticleType ()

The type of article.

public abstract ChatterUser getCreatedBy ()

A user object representing the Salesforce User who created the article.

Returns
  • The user that created the article.

public abstract Date getCreatedDate ()

The Date the article was created.

Returns
  • The article creation date.

public abstract List<ArticleDetails.Field> getFields ()

Access the ArticleDetails.Field instances for this article. The fields are the content of the article, and may be standard Salesforce fields or custom to your organization. The fields are sorted according to the layout for the article type in Salesforce Knowledge.

Returns
  • The list of fields.

public abstract ChatterUser getLastModifiedBy ()

A user object representing the Salesforce User who last modified the article.

Returns
  • The user that last modified the article.

public abstract Date getLastModifiedDate ()

The Date the last time the article was modified.

Returns
  • The article modified date.

public abstract int getVersionNumber ()

The version number increments with each new version of the article that is published.

Returns
  • The article version number.