mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-20 07:40:51 +00:00
15 lines
256 B
Objective-C
15 lines
256 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
|