mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-11 00:21:18 +00:00
23 lines
389 B
Objective-C
23 lines
389 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGTextPron : SWGObject
|
|
|
|
@property(nonatomic) NSString* raw;
|
|
|
|
@property(nonatomic) NSNumber* seq;
|
|
|
|
@property(nonatomic) NSString* rawType;
|
|
|
|
- (id) raw: (NSString*) raw
|
|
seq: (NSNumber*) seq
|
|
rawType: (NSString*) rawType;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|