forked from loafle/openapi-generator-original
36 lines
840 B
Objective-C
36 lines
840 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "NIKSwaggerObject.h"
|
|
#import "NIKDate.h"
|
|
|
|
@interface NIKOrder : NIKSwaggerObject {
|
|
@private
|
|
NSDictionary* raw;
|
|
NSNumber* __id; //NSNumber
|
|
NSNumber* _petId; //NSNumber
|
|
NSString* _status; //NSString
|
|
NSNumber* _quantity; //NSNumber
|
|
NIKDate* _shipDate; //NIKDate
|
|
}
|
|
|
|
@property(nonatomic) NSDictionary* raw;
|
|
|
|
|
|
@property(nonatomic) NSNumber* _id;
|
|
@property(nonatomic) NSNumber* petId;
|
|
@property(nonatomic) NSString* status;
|
|
@property(nonatomic) NSNumber* quantity;
|
|
@property(nonatomic) NIKDate* shipDate;
|
|
- (id) _id: (NSNumber*) _id
|
|
petId: (NSNumber*) petId
|
|
status: (NSString*) status
|
|
quantity: (NSNumber*) quantity
|
|
shipDate: (NIKDate*) shipDate;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
- (NSDictionary*) asRaw;
|
|
|
|
|
|
@end
|
|
|