| 123456789101112131415161718 |
- //
- // 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<String, String>
- let body: String?
- var capturedUrlGroups: [String]
- }
|