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