/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { incidentUpdatesList } from "../funcs/incidentUpdatesList.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 IncidentUpdates extends ClientSDK { /** * List Incident Updates V2 * * @remarks * List all incident updates for an organisation, or for a specific incident. */ async list( request: operations.IncidentUpdatesV2NumberListRequest, options?: RequestOptions, ): Promise { return unwrapAsync(incidentUpdatesList( this, request, options, )); } }