diff --git a/AppleLibs/Network/Requests/Request.swift b/AppleLibs/Network/Requests/Request.swift
index 52edd105bcc1e997054dd2642ac458918fd1f418..9aa462f38c727439ce8cf042b7af55d8ce6d4bbb 100644
--- a/AppleLibs/Network/Requests/Request.swift
+++ b/AppleLibs/Network/Requests/Request.swift
@@ -63,13 +63,13 @@ public class Request: CustomStringConvertible
         case delete = "DELETE"
     }
 
-    let url: String
-    let method: RequestMethod
-    let authentication: Authentication?
-    let parameters: [String: String]
-    let payload: Data?
+    public let url: String
+    public let method: RequestMethod
+    public let authentication: Authentication?
+    public let parameters: [String: String]
+    public let payload: Data?
 
-    let contentType: String?
+    public let contentType: String?
 
     public init(url: String, method: RequestMethod, authentication: Authentication?, parameters: [String: String] = [:], payload: Data? = nil, contentType: String?) {
         self.url = url