Class SocialFeed

Specifies a feed, which contains an array of SocialThreads, each of which specifies a root SocialPost object and an array of response SocialPost objects.

Hierarchy

Index

Methods

Methods

public customFromJson(obj: any): boolean

Parameters

  • obj: any

Returns

boolean

public customWriteToXml(writer: XmlWriter, serializationContext: SerializationContext): boolean

Parameters

Returns

boolean

public fromJson(obj: any)

Parameters

  • obj: any

public get_attributes(): SocialFeedAttributes

Specifies attributes of the returned feed. The attributes specify if the requested feed has additional threads that were not included in the returned thread.

Returns

SocialFeedAttributes

public get_newestProcessed(): string

Returns the date-time of the most recent post that was requested. The most recent post that was requested can be removed from the feed if the current user does not have access to it. Consequently, the feed does not always contain the post with the date specified in this property.

Returns

string

public get_oldestProcessed(): string

The OldestProcessed property returns the date-time of the oldest post that was requested. The oldest post that was requested can be removed from the feed if the current user does not have access to it. Consequently, the feed does not always contain the post with the date specified in this property

Returns

string

public get_threads(): SocialThread[]

Contains the social threads in the feed.

Returns

SocialThread[]

public get_typeId(): string

Returns

string

public get_unreadMentionCount(): number

Returns the number of mentions of the current user that have been added to the feed on the server since the time that the unread mention count was cleared for the current user.

Returns

number

public writeToXml(writer: XmlWriter, serializationContext: SerializationContext)

Parameters