| Package | com.facebook.graph.data.api.thread |
| Class | public class FacebookThread |
| Inheritance | FacebookThread AbstractFacebookGraphObject |
See also
| Property | Defined by | ||
|---|---|---|---|
![]() | id : String
The unique ID for the graph object.
| AbstractFacebookGraphObject | |
| message_count : int
Number of messages in the thread.
| FacebookThread | ||
![]() | rawResult : Object
The raw decoded JSON result data for the graph object.
| AbstractFacebookGraphObject | |
| snippet : String
Fragment of the thread for use in thread lists.
| FacebookThread | ||
| tags : Array
Thread tags.
| FacebookThread | ||
| unread_count : int
Number of unread messages in the thread.
| FacebookThread | ||
| updated_time : Date
Timestamp of when the thread was last updated.
| FacebookThread | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new FacebookThread.
| FacebookThread | ||
|
fromJSON(result:Object):FacebookThread
[static]
Populates and returns a new FacebookThread from a decoded JSON object.
| FacebookThread | ||
|
toString():String
Provides the string value of the graph object.
| FacebookThread | ||
| Method | Defined by | ||
|---|---|---|---|
|
setPropertyValue(property:String, value:*):void
| FacebookThread | ||
| message_count | property |
public var message_count:intNumber of messages in the thread.
| snippet | property |
public var snippet:StringFragment of the thread for use in thread lists.
| tags | property |
public var tags:ArrayThread tags.
| unread_count | property |
public var unread_count:intNumber of unread messages in the thread.
| updated_time | property |
public var updated_time:DateTimestamp of when the thread was last updated.
| FacebookThread | () | constructor |
public function FacebookThread()Creates a new FacebookThread.
| fromJSON | () | method |
public static function fromJSON(result:Object):FacebookThreadPopulates and returns a new FacebookThread from a decoded JSON object.
Parametersresult:Object — A decoded JSON object.
|
FacebookThread —
A new FacebookThread.
|
| setPropertyValue | () | method |
protected override function setPropertyValue(property:String, value:*):voidParameters
property:String |
|
value:* |
| toString | () | method |
public override function toString():StringProvides the string value of the graph object.
ReturnsString — The string value of the graph object.
|