vk-ios-sdk/library/Source/API/methods/VKApiGroups.m

17 lines
386 B
Objective-C

//
// VKApiGroups.m
// sdk
//
// Created by Roman Truba on 16.07.14.
// Copyright (c) 2014 VK. All rights reserved.
//
#import "VKApiGroups.h"
#import "VKGroup.h"
@implementation VKApiGroups
- (VKRequest *)getById:(NSDictionary *)params {
return [self prepareRequestWithMethodName:@"getById" andParameters:params andHttpMethod:@"GET" andClassOfModel:[VKGroups class]];
}
@end