// // VoltaReading.h // Volta // // Created by Ronny Fenrich on 2013-06-14. // Copyright (c) 2013 Decoder. All rights reserved. // #import @interface VoltaReading : NSObject + (VoltaReading *)initFromJSON:(NSDictionary *)jsonData; @property (nonatomic) NSInteger id; @property (nonatomic) NSInteger usage; @property (nonatomic) NSInteger duration; @property (nonatomic) NSInteger cost; @property (strong, nonatomic) NSDate *startDate; @property (strong, nonatomic) NSString *dictionaryKey; // Date of reading @end