mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
52 lines
1017 B
Objective-C
52 lines
1017 B
Objective-C
#import "SWGName.h"
|
|
|
|
@implementation SWGName
|
|
|
|
- (instancetype)init {
|
|
self = [super init];
|
|
|
|
if (self) {
|
|
// initalise property's default value, if any
|
|
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
|
|
/**
|
|
* Maps json key to property name.
|
|
* This method is used by `JSONModel`.
|
|
*/
|
|
+ (JSONKeyMapper *)keyMapper
|
|
{
|
|
return [[JSONKeyMapper alloc] initWithDictionary:@{ @"name": @"name", @"snake_case": @"snakeCase" }];
|
|
}
|
|
|
|
/**
|
|
* Indicates whether the property with the given name is optional.
|
|
* If `propertyName` is optional, then return `YES`, otherwise return `NO`.
|
|
* This method is used by `JSONModel`.
|
|
*/
|
|
+ (BOOL)propertyIsOptional:(NSString *)propertyName
|
|
{
|
|
NSArray *optionalProperties = @[@"snakeCase"];
|
|
|
|
if ([optionalProperties containsObject:propertyName]) {
|
|
return YES;
|
|
}
|
|
else {
|
|
return NO;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets the string presentation of the object.
|
|
* This method will be called when logging model object using `NSLog`.
|
|
*/
|
|
- (NSString *)description {
|
|
return [[self toDictionary] description];
|
|
}
|
|
|
|
@end
|