/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { followUpsGet } from "../funcs/followUpsGet.js"; import { followUpsList } from "../funcs/followUpsList.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class FollowUps extends ClientSDK { /** * List Follow-ups V2 * * @remarks * List all follow-ups for an organisation. */ async list( request: operations.FollowUpsV2NumberListRequest, options?: RequestOptions, ): Promise { return unwrapAsync(followUpsList( this, request, options, )); } /** * Show Follow-ups V2 * * @remarks * Get a single incident follow-up. */ async get( request: operations.FollowUpsV2NumberShowRequest, options?: RequestOptions, ): Promise { return unwrapAsync(followUpsGet( this, request, options, )); } }