RLMResponse

@interface RLMResponse : NSObject

The contents of an HTTP response.

  • The status code of the HTTP response.

    Declaration

    Objective-C

    @property (nonatomic) NSInteger httpStatusCode;
  • A custom status code provided by the SDK.

    Declaration

    Objective-C

    @property (nonatomic) NSInteger customStatusCode;
  • The headers of the HTTP response.

    Declaration

    Objective-C

    @property (strong, nonatomic) NSDictionary<NSString *, NSString *> *_Nonnull headers;
  • The body of the HTTP response.

    Declaration

    Objective-C

    @property (strong, nonatomic) NSString *_Nonnull body;