ATHttpConnectionManagerResponse

public class ATHttpConnectionManagerResponse: NSObject

The ATHttpConnectionManagerResponse represents the server response received via ATHttpConnectionManager.

  • The variable allows to get the status code of the http response.

    Usage Example

    Swift.print(aResponse.statusCode)
    

    Declaration

    Swift

    public var statusCode: Int?
  • The variable allows to get the headers of the http response.

    Usage Example

    Swift.print(aResponse.headers)
    

    Declaration

    Swift

    public var headers: [AnyHashable:Any]?
  • The variable allows to get the body of the http response.

    Usage Example

    Swift.print(aResponse.body)
    

    Declaration

    Swift

    public var body: Data?