/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { usersFollowingList } from "../funcs/users-following-list.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Following extends ClientSDK { /** * Get Following (v3) * * @remarks * Get following list of a user. Page size 10-100; use cursor for more pages. $0.10/1000 users. */ async list( request: models.FollowersFollowingV3Query, options?: RequestOptions, ): Promise { return unwrapAsync(usersFollowingList( this, request, options, )); } }