| Package | com.facebook.graph.data.api.note |
| Class | public class FacebookNote |
| Inheritance | FacebookNote AbstractFacebookGraphObject |
See also
| Property | Defined by | ||
|---|---|---|---|
| created_time : Date
The time the note was initially published.
| FacebookNote | ||
| from : Object
The profile that created the note.
| FacebookNote | ||
| icon : String
The icon that Facebook displays with notes.
| FacebookNote | ||
![]() | id : String
The unique ID for the graph object.
| AbstractFacebookGraphObject | |
| message : String
The content of the note.
| FacebookNote | ||
![]() | rawResult : Object
The raw decoded JSON result data for the graph object.
| AbstractFacebookGraphObject | |
| subject : String
The title of the note.
| FacebookNote | ||
| updated_time : Date
The time the note was last updated.
| FacebookNote | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new FacebookNote.
| FacebookNote | ||
|
fromJSON(result:Object):FacebookNote
[static]
Populates and returns a new FacebookNote from a decoded JSON object.
| FacebookNote | ||
|
toString():String
Provides the string value of the graph object.
| FacebookNote | ||
| created_time | property |
public var created_time:DateThe time the note was initially published.
| from | property |
public var from:ObjectThe profile that created the note.
| icon | property |
public var icon:StringThe icon that Facebook displays with notes.
| message | property |
public var message:StringThe content of the note.
| subject | property |
public var subject:StringThe title of the note.
| updated_time | property |
public var updated_time:DateThe time the note was last updated.
| FacebookNote | () | constructor |
public function FacebookNote()Creates a new FacebookNote.
| fromJSON | () | method |
public static function fromJSON(result:Object):FacebookNotePopulates and returns a new FacebookNote from a decoded JSON object.
Parametersresult:Object — A decoded JSON object.
|
FacebookNote —
A new FacebookNote.
|
| toString | () | method |
public override function toString():StringProvides the string value of the graph object.
ReturnsString — The string value of the graph object.
|