forked from loafle/openapi-generator-original
26 lines
475 B
Objective-C
26 lines
475 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGNote : SWGObject
|
|
|
|
@property(nonatomic) NSString* noteType;
|
|
|
|
@property(nonatomic) NSArray* appliesTo;
|
|
|
|
@property(nonatomic) NSString* value;
|
|
|
|
@property(nonatomic) NSNumber* pos;
|
|
|
|
- (id) noteType: (NSString*) noteType
|
|
appliesTo: (NSArray*) appliesTo
|
|
value: (NSString*) value
|
|
pos: (NSNumber*) pos;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|