MBXHttpResponseData


@interface MBXHttpResponseData : NSObject

Record which contains data received in HTTP response.

  • Map which contains HTTP response headers in a format header name:value. All the header names are in lower case format.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nonnull) NSDictionary<NSString *, NSString *> *headers;
  • HTTP response code.

    Declaration

    Objective-C

    @property (nonatomic, readonly) int64_t code;
  • Data chunk received in HTTP response.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSData *data;