| Package | com.facebook.graph.data.api.core |
| Class | public class FacebookLocation |
| Inheritance | FacebookLocation AbstractFacebookGraphObject |
| Property | Defined by | ||
|---|---|---|---|
| city : String
The location's city.
| FacebookLocation | ||
| country : String
The location's country.
| FacebookLocation | ||
![]() | id : String
The unique ID for the graph object.
| AbstractFacebookGraphObject | |
| latitude : Number
The location's latitude.
| FacebookLocation | ||
| longitude : Number
The location's longitude.
| FacebookLocation | ||
![]() | rawResult : Object
The raw decoded JSON result data for the graph object.
| AbstractFacebookGraphObject | |
| state : String
The location's state.
| FacebookLocation | ||
| street : String
The location's street.
| FacebookLocation | ||
| zip : String
The location's zip.
| FacebookLocation | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new FacebookLocation.
| FacebookLocation | ||
|
fromJSON(result:Object):FacebookLocation
[static]
Populates and returns a new FacebookLocation from a decoded JSON object.
| FacebookLocation | ||
|
toString():String
Provides the string value of the graph object.
| FacebookLocation | ||
| city | property |
public var city:StringThe location's city.
| country | property |
public var country:StringThe location's country.
| latitude | property |
public var latitude:NumberThe location's latitude.
| longitude | property |
public var longitude:NumberThe location's longitude.
| state | property |
public var state:StringThe location's state.
| street | property |
public var street:StringThe location's street.
| zip | property |
public var zip:StringThe location's zip.
| FacebookLocation | () | constructor |
public function FacebookLocation()Creates a new FacebookLocation.
| fromJSON | () | method |
public static function fromJSON(result:Object):FacebookLocationPopulates and returns a new FacebookLocation from a decoded JSON object.
Parametersresult:Object — A decoded JSON object.
|
FacebookLocation —
A new FacebookLocation.
|
| toString | () | method |
public override function toString():StringProvides the string value of the graph object.
ReturnsString — The string value of the graph object.
|