/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { buyersGiftCardsList } from "../funcs/buyersGiftCardsList.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 Gr4vyGiftCards extends ClientSDK { /** * List gift cards for a buyer * * @remarks * List all the stored gift cards for a specific buyer. */ async list( request?: operations.ListBuyerGiftCardsRequest | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(buyersGiftCardsList( this, request, options, )); } }