forked from loafle/openapi-generator-original
30 lines
553 B
Objective-C
30 lines
553 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
@protocol SWGSanitizer <NSObject>
|
|
|
|
/**
|
|
* Sanitize object for request
|
|
*
|
|
* @param object The query/path/header/form/body param to be sanitized.
|
|
*/
|
|
- (id) sanitizeForSerialization:(id) object;
|
|
|
|
/**
|
|
* Convert parameter to NSString
|
|
*/
|
|
- (NSString *) parameterToString: (id) param;
|
|
|
|
@end
|
|
|
|
@interface SWGSanitizer : NSObject <SWGSanitizer>
|
|
|
|
|
|
|
|
@end
|