// // HttpRequest.swift // Swifter // 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: [String: String] let body: String? var capturedUrlGroups: [String] }