// // HttpRequest.swift // Swifter // // Created by Damian Kolakowski on 19/08/14. // Copyright (c) 2014 Damian KoĊ‚akowski. All rights reserved. // import Foundation struct HttpRequest { let url: String let urlParams: [(String, String)] // http://stackoverflow.com/questions/1746507/authoritative-position-of-duplicate-http-get-query-keys let method: String let headers: Dictionary let body: String? var capturedUrlGroups: [String] }