mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-24 17:50:53 +00:00
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
|
|
|