Wuyx
2017-01-17 5ed44f1f2b699b1f78935651b0a4b9d9467fa9f1
commit | author | age
dcdc07 1 //
W 2 //  GHWSDKAppRequest.h
3 //  GHWSdkUI
4 //
5 //  Created by wuyx on 15/7/17.
6 //  Copyright (c) 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "WAAppUser.h"
11 #import "WAFBObject.h"
12 #import "WAFBApplication.h"
13 /*!
14  @discussion WAFBApplication
15  - - -
16  */
17 @interface WAFBAppRequest : NSObject
18 /*!
19  @abstract ID
20  */
21 @property(nonatomic,copy)NSString* ID;
22 /*!
23  @abstract message
24  */
25 @property(nonatomic,copy)NSString* message;
26 /*!
27  @abstract created_time
28  */
29 @property(nonatomic,copy)NSString* created_time;
30 /*!
31  @abstract action_type
32  */
33 @property(nonatomic,copy)NSString* action_type;
34 /*!
35  @abstract from
36  */
37 @property(nonatomic,copy)WAAppUser* from;
38 /*!
39  @abstract to
40  */
41 @property(nonatomic,copy)WAAppUser* to;
42 /*!
43  @abstract object
44  */
45 @property(nonatomic,copy)WAFBObject* object;
46 /*!
47  @abstract application
48  */
49 @property(nonatomic,copy)WAFBApplication* application;
50 /*!
51  @abstract data
52  */
53 @property(nonatomic,copy)NSDictionary* data;
54 @end