// // Message.h // Juick // // Created by Vitaly Takmazov on 29.10.13. // Copyright (c) 2013 com.juick. All rights reserved. // #import #import "User.h" @interface Message : NSObject @property NSNumber *mid; @property NSNumber *rid; @property User *user; @property NSString *text; @property NSArray *tags; @property NSString *timestamp; @property NSString *attach; @property NSString *repliesBy; @property NSNumber *repliesCount; +(void) pullNextFromPath:(NSString *)path params:(NSDictionary *)params callback:(void(^)(NSArray *))callback; +(NSString *) messagesUrl; +(NSString *) threadUrl; +(NSString *) feedUrl; @end