mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-18 06:40:51 +00:00
19 lines
391 B
Objective-C
19 lines
391 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGSyllable : SWGObject
|
|
|
|
@property(nonatomic) NSString* text;
|
|
@property(nonatomic) NSNumber* seq;
|
|
@property(nonatomic) NSString* type;
|
|
- (id) text: (NSString*) text
|
|
seq: (NSNumber*) seq
|
|
type: (NSString*) type;
|
|
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
@end
|