GraphResponse
publicstructGraphResponse:GraphResponseProtocol
Represents a generic response that was received when
GraphRequest
succeeded.publicstructGraphResponse:GraphResponseProtocol
GraphRequest
succeeded.GraphResponse
.publicinit(rawResponse:Any?)
rawResponse | Raw response received from a server. Usually is represented by either a Dictionary or Array . |
Dictionary<String, Any>
. If the conversion fails or there is was response - returns nil
.publicvardictionaryValue:[String:Any]?{get}
Array<Any>
If the conversion fails or there is was response - returns nil
.publicvararrayValue:[Any]?{get}
String
. If the conversion fails or there is was response - returns nil
.publicvarstringValue:String?{get}