FuelingAPIResponse
public struct FuelingAPIResponse<T> where T : APIResponseValue
extension FuelingAPIResponse: CustomStringConvertible, CustomDebugStringConvertible
Undocumented
-
The Request used for this response
Declaration
Swift
public let request: FuelingAPIRequest<T> -
The result of the response .
Declaration
Swift
public let result: APIResult<T> -
The URL request sent to the server.
Declaration
Swift
public let urlRequest: URLRequest? -
The server’s response to the URL request.
Declaration
Swift
public let urlResponse: HTTPURLResponse? -
The data returned by the server.
Declaration
Swift
public let data: Data? -
Declaration
Swift
public var description: String { get } -
Declaration
Swift
public var debugDescription: String { get } -
Undocumented
Declaration
Swift
public func asAny() -> FuelingAPIResponse<AnyResponseValue>
View on GitHub
FuelingAPIResponse Structure Reference