Packagecom.marpies.ane.facebook.data
Classpublic class AIRFacebookGameRequest
InheritanceAIRFacebookGameRequest Inheritance Object

Represents Facebook Game Requests which can be requested using AIRFacebook.requestUserGameRequests(). Only the properties specified in the fields parameter are available in the result.



Public Properties
 PropertyDefined By
  actionType : String
[read-only] Returns one of the values specified in AIRFacebookGameRequestActionType or "invite".
AIRFacebookGameRequest
  application : Object
[read-only] Returns Object containing information about the application that was used to send the request, or null if the field application was not specified in the call requesting the Game Requests.
AIRFacebookGameRequest
  createdTime : String
[read-only] Specifies when the Game Request was created, in the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g.
AIRFacebookGameRequest
  data : String
[read-only] Additional freeform data that you sent along with the request, or null if the field data was not specified in the call requesting the Game Requests.
AIRFacebookGameRequest
  id : String
[read-only] ID of the Game Request.
AIRFacebookGameRequest
  message : String
[read-only] Message that was sent along with the Game Request.
AIRFacebookGameRequest
  object : Object
[read-only] Returns Object (JSON) containing information about the object that was either sent or asked for by the sender of the request, or null if the field object was not specified in the call making the request or the object field is not supported for this actionType.
AIRFacebookGameRequest
  recipientID : String
[read-only] ID of the user receiving the Game Request.
AIRFacebookGameRequest
  senderID : String
[read-only] ID of the user sending the Game Request.
AIRFacebookGameRequest
Property Detail
actionTypeproperty
actionType:String  [read-only]

Returns one of the values specified in AIRFacebookGameRequestActionType or "invite".


Implementation
    public function get actionType():String
applicationproperty 
application:Object  [read-only]

Returns Object containing information about the application that was used to send the request, or null if the field application was not specified in the call requesting the Game Requests.


Implementation
    public function get application():Object
createdTimeproperty 
createdTime:String  [read-only]

Specifies when the Game Request was created, in the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g. 2015-02-25T13:37:00+0000.


Implementation
    public function get createdTime():String
dataproperty 
data:String  [read-only]

Additional freeform data that you sent along with the request, or null if the field data was not specified in the call requesting the Game Requests.


Implementation
    public function get data():String
idproperty 
id:String  [read-only]

ID of the Game Request.


Implementation
    public function get id():String
messageproperty 
message:String  [read-only]

Message that was sent along with the Game Request.


Implementation
    public function get message():String
objectproperty 
object:Object  [read-only]

Returns Object (JSON) containing information about the object that was either sent or asked for by the sender of the request, or null if the field object was not specified in the call making the request or the object field is not supported for this actionType.


Implementation
    public function get object():Object
recipientIDproperty 
recipientID:String  [read-only]

ID of the user receiving the Game Request. This is null if the Game Request is queried using sender's access token. To obtain this information using a sender's access token, you need to append the Game Request ID with recipient ID and query this concatenated ID.

Format of concatenated Game Request ID: {REQUEST_OBJECT_ID}_{USER_ID}.


Implementation
    public function get recipientID():String
senderIDproperty 
senderID:String  [read-only]

ID of the user sending the Game Request.


Implementation
    public function get senderID():String