mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-19 23:30:56 +00:00
20 lines
427 B
Objective-C
20 lines
427 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
#import "SWGCategory.h"
|
|
|
|
|
|
@interface SWGRoot : SWGObject
|
|
|
|
@property(nonatomic) NSNumber* _id;
|
|
@property(nonatomic) NSString* name;
|
|
@property(nonatomic) NSArray* categories;
|
|
- (id) _id: (NSNumber*) _id
|
|
name: (NSString*) name
|
|
categories: (NSArray*) categories;
|
|
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
@end
|