/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { playbackGet } from "../funcs/playbackGet.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Playback extends ClientSDK { /** * Retrieve Playback Info */ async get( id: string, options?: RequestOptions, ): Promise { return unwrapAsync(playbackGet( this, id, options, )); } }