RLMRequest

@interface RLMRequest : NSObject

An HTTP request that can be made to an arbitrary server.

  • The HTTP method of this request.

    Declaration

    Objective-C

    @property (nonatomic) RLMHTTPMethod method;
  • url

    The URL to which this request will be made.

    Declaration

    Objective-C

    @property (strong, nonatomic) NSString *_Nonnull url;
  • The number of milliseconds that the underlying transport should spend on an HTTP round trip before failing with an error.

    Declaration

    Objective-C

    @property (nonatomic) NSTimeInterval timeout;
  • The HTTP headers of this request.

    Declaration

    Objective-C

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

    Declaration

    Objective-C

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