/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { checksGetCheckDeposit } from "../funcs/checksGetCheckDeposit.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Checks extends ClientSDK { /** * Get Check Deposit * * @remarks * Gets an existing check deposit. */ async getCheckDeposit( accountId: string, checkDepositId: string, options?: RequestOptions, ): Promise { return unwrapAsync(checksGetCheckDeposit( this, accountId, checkDepositId, options, )); } }