forked from loafle/openapi-generator-original
17 lines
254 B
Objective-C
17 lines
254 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGExampleUsage : SWGObject
|
|
|
|
@property(nonatomic) NSString* text;
|
|
|
|
- (id) text: (NSString*) text;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|