Package | com.facebook.graph.data.api.core |
Class | public class FacebookLocation |
Inheritance | FacebookLocation ![]() |
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:String
The location's city.
country | property |
public var country:String
The location's country.
latitude | property |
public var latitude:Number
The location's latitude.
longitude | property |
public var longitude:Number
The location's longitude.
state | property |
public var state:String
The location's state.
street | property |
public var street:String
The location's street.
zip | property |
public var zip:String
The location's zip.
FacebookLocation | () | constructor |
public function FacebookLocation()
Creates a new FacebookLocation.
fromJSON | () | method |
public static function fromJSON(result:Object):FacebookLocation
Populates 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():String
Provides the string value of the graph object.
ReturnsString — The string value of the graph object.
|