Skip to content

Instantly share code, notes, and snippets.

@gbasile
Created January 27, 2016 23:03
Show Gist options
  • Save gbasile/c5c6e25f1323908de36f to your computer and use it in GitHub Desktop.
Save gbasile/c5c6e25f1323908de36f to your computer and use it in GitHub Desktop.
class RegisterDeviceTokenRequest: Request {
convenience init(deviceToken: String, callback: RequestCallback) {
self.init(path: "add_token", parameters: ["token": deviceToken], callback: callback)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment