ZendeskApi_v2.Requests.Users.GetUsersInGroupAsync C# (CSharp) Method

GetUsersInGroupAsync() public method

public GetUsersInGroupAsync ( long id ) : Task
id long
return Task
        public async Task<GroupUserResponse> GetUsersInGroupAsync(long id)
        {
            return await GenericGetAsync<GroupUserResponse>(string.Format("groups/{0}/users.json", id));
        }