Files
openapi-generator/samples/client/wordnik/objc/client/SWGObject.m
2015-02-05 21:45:48 -08:00

18 lines
307 B
Objective-C

#import "SWGObject.h"
@implementation SWGObject
- (id) initWithValues:(NSDictionary*)dict {
return self;
}
- (NSDictionary*) asDictionary{
return [NSDictionary init];
}
- (NSString*)description {
return [NSString stringWithFormat:@"%@ %@", [super description], [self asDictionary]];
}
@end