/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { icpUsdRateGetApiV3IcpUsdPercentChange24h } from "../funcs/icpUsdRateGetApiV3IcpUsdPercentChange24h.js"; import { icpUsdRateGetApiV3IcpUsdRate } from "../funcs/icpUsdRateGetApiV3IcpUsdRate.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class IcpUsdRate extends ClientSDK { async getApiV3IcpUsdRate( options?: RequestOptions, ): Promise { return unwrapAsync(icpUsdRateGetApiV3IcpUsdRate( this, options, )); } async getApiV3IcpUsdPercentChange24h( options?: RequestOptions, ): Promise { return unwrapAsync(icpUsdRateGetApiV3IcpUsdPercentChange24h( this, options, )); } }