Wuyx
2017-01-11 6c0388687ea77818dec125c356520e8a39bbcb5e
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
//
//  VKGroup.h
//  sdk
//
//  Created by Roman Truba on 16.07.14.
//  Copyright (c) 2014 VK. All rights reserved.
//
 
#import "VKApiObjectArray.h"
#import "VKUser.h"
 
/**
 Geo-object type
 */
@interface VKGeoPlace : VKApiObject
 
@property(nonatomic, strong) NSNumber *id;
@property(nonatomic, strong) NSString *title;
@property(nonatomic, strong) NSNumber *latitude;
@property(nonatomic, strong) NSNumber *longitude;
@property(nonatomic, strong) NSNumber *created;
@property(nonatomic, strong) NSString *icon;
@property(nonatomic, strong) NSNumber *group_id;
@property(nonatomic, strong) NSNumber *group_photo;
@property(nonatomic, strong) NSNumber *checkins;
@property(nonatomic, strong) NSNumber *updated;
@property(nonatomic, strong) NSNumber *type;
@property(nonatomic, strong) NSNumber *country;
@property(nonatomic, strong) NSString *city;
@property(nonatomic, strong) NSString *address;
@property(nonatomic, strong) NSNumber *showmap;
@end
 
/**
 Object representing contact in group
 */
@interface VKGroupContact : VKApiObject
 
@property(nonatomic, strong) NSNumber *user_id;
@property(nonatomic, strong) NSString *desc;
@property(nonatomic, strong) NSString *email;
 
@end
 
/**
 Array of VKGroupContact objects
 */
@interface VKGroupContacts : VKApiObjectArray<VKGroupContact*>
 
@end
 
/**
 Object representing link in group
 */
@interface VKGroupLink : VKApiObject
 
@property(nonatomic, strong) NSString *url;
@property(nonatomic, strong) NSString *name;
@property(nonatomic, strong) NSString *desc;
@property(nonatomic, strong) NSString *photo_50;
@property(nonatomic, strong) NSString *photo_100;
 
@end
 
/**
 Array of VKGroupLink objects
 */
@interface VKGroupLinks : VKApiObjectArray<VKGroupLink*>
@end
 
/**
 Group type of VK API. See descriptions here https://vk.com/dev/fields_groups
 */
@interface VKGroup : VKApiObject
@property(nonatomic, strong) NSNumber *id;
@property(nonatomic, strong) NSString *name;
@property(nonatomic, strong) NSString *screen_name;
@property(nonatomic, strong) NSNumber *is_closed;
@property(nonatomic, strong) NSString *type;
@property(nonatomic, strong) NSNumber *is_admin;
@property(nonatomic, strong) NSNumber *admin_level;
@property(nonatomic, strong) NSNumber *is_member;
@property(nonatomic, strong) VKCity *city;
@property(nonatomic, strong) VKCountry *country;
@property(nonatomic, strong) VKGeoPlace *place;
@property(nonatomic, strong) NSString *description;
@property(nonatomic, strong) NSString *wiki_page;
@property(nonatomic, strong) NSNumber *members_count;
@property(nonatomic, strong) VKCounters *counters;
@property(nonatomic, strong) NSNumber *start_date;
@property(nonatomic, strong) NSNumber *end_date;
@property(nonatomic, strong) NSNumber *finish_date;
@property(nonatomic, strong) NSNumber *can_post;
@property(nonatomic, strong) NSNumber *can_see_all_posts;
@property(nonatomic, strong) NSNumber *can_create_topic;
@property(nonatomic, strong) NSNumber *can_upload_doc;
@property(nonatomic, strong) NSString *activity;
@property(nonatomic, strong) NSString *status;
@property(nonatomic, strong) VKAudio *status_audio;
@property(nonatomic, strong) VKGroupContacts *contacts;
@property(nonatomic, strong) VKGroupLinks *links;
@property(nonatomic, strong) NSNumber *fixed_post;
@property(nonatomic, strong) NSNumber *verified;
@property(nonatomic, strong) NSString *site;
@property(nonatomic, strong) NSString *photo_50;
@property(nonatomic, strong) NSString *photo_100;
@property(nonatomic, strong) NSString *photo_200;
@property(nonatomic, strong) NSString *photo_max_orig;
@property(nonatomic, strong) NSNumber *is_request;
@property(nonatomic, strong) NSNumber *is_invite;
@property(nonatomic, strong) VKPhotoArray *photos;
@property(nonatomic, strong) NSNumber *photos_count;
@property(nonatomic, strong) NSNumber *invited_by;
@property(nonatomic, assign) NSInteger invite_state;
@property(nonatomic, strong) NSString *deactivated;
@property(nonatomic, strong) NSNumber *blacklisted;
 
@end
 
@interface VKGroups : VKApiObjectArray<VKGroup*>
 
@end