forked from loafle/openapi-generator-original
21 lines
408 B
Objective-C
21 lines
408 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
#import "SWGWordSearchResult.h"
|
|
|
|
|
|
@interface SWGWordSearchResults : SWGObject
|
|
|
|
@property(nonatomic) NSArray* searchResults;
|
|
|
|
@property(nonatomic) NSNumber* totalResults;
|
|
|
|
- (id) searchResults: (NSArray*) searchResults
|
|
totalResults: (NSNumber*) totalResults;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|