mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
19 lines
412 B
Objective-C
19 lines
412 B
Objective-C
//
|
|
// NSDictionary+OTRestRequestSerialization.h
|
|
// gateguru
|
|
//
|
|
// Created by Blake Watters on 7/28/09.
|
|
// Copyright 2009 Objective 3. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "OTRestRequestSerializable.h"
|
|
|
|
@interface NSDictionary (OTRestRequestSerialization) <OTRestRequestSerializable>
|
|
|
|
- (NSString*)URLEncodedString;
|
|
- (NSString*)ContentTypeHTTPHeader;
|
|
- (NSData*)HTTPBody;
|
|
|
|
@end
|