-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathCOMessageRequest.h
More file actions
36 lines (24 loc) · 919 Bytes
/
COMessageRequest.h
File metadata and controls
36 lines (24 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// COMessageRequest.h
// CodingForiPad
//
// Created by sunguanglei on 15/6/23.
// Copyright (c) 2015年 coding. All rights reserved.
//
#import "CODataRequest.h"
@interface COConversationListRequest : COPageRequest
@end
@interface COConversationRequest : CODataRequest
@property (nonatomic, copy) COUriParameters NSString *globalKey;
@property (nonatomic, copy) COUriParameters NSString *type;
@property (nonatomic, copy) COQueryParameters NSNumber *lastId;
@property (nonatomic, copy) COQueryParameters NSNumber *pageSize;
@end
@interface COMessageSendRequest : CODataRequest
@property (nonatomic, copy) COFormParameters NSString *content;
@property (nonatomic, copy) COFormParameters NSString *extra;
@property (nonatomic, copy) COFormParameters NSString *receiverGlobalKey;
@end
@interface CONotificationRequest : COPageRequest
@property (nonatomic, strong) COQueryParameters NSNumber *type;
@end