All Downloads are FREE. Search and download functionalities are using the official Maven repository.

objc.model-header.mustache Maven / Gradle / Ivy

There is a newer version: 2.0.14
Show newest version
#import 
#import "NIKSwaggerObject.h"
{{#imports}}#import "{{import}}.h"
{{/imports}}
{{newline}}
{{#models}}
{{#model}}

@interface {{classname}} : NIKSwaggerObject

{{#vars}}
@property(nonatomic) {{datatype}} {{name}};
{{/vars}}
- (id) {{#vars}}{{name}}: ({{datatype}}) {{name}}{{#hasMore}}{{newline}}     {{/hasMore}}{{^hasMore}};{{/hasMore}}
       {{/vars}}
{{newline}}
- (id) initWithValues: (NSDictionary*)dict;
- (NSDictionary*) asDictionary;
{{newline}}
@end
{{/model}}
{{/models}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy