/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { enrichedProfileGet } from "../funcs/enrichedProfileGet.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class EnrichedProfile extends ClientSDK { /** * Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/profile-enrichment.read` scope. */ async get( request: operations.GetEnrichmentProfileRequest, options?: RequestOptions, ): Promise { return unwrapAsync(enrichedProfileGet( this, request, options, )); } }