mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-11-30 15:33:39 +00:00
17 lines
253 B
Objective-C
17 lines
253 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGStringValue : SWGObject
|
|
|
|
@property(nonatomic) NSString* word;
|
|
|
|
- (id) word: (NSString*) word;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|