mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 15:54:31 +00:00
14 lines
258 B
Objective-C
14 lines
258 B
Objective-C
#import "SWGObject.h"
|
|
|
|
@implementation SWGObject
|
|
|
|
/**
|
|
* 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
|