UNPKG

@adyen/kyc-components

Version:

`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar

9 lines (8 loc) 419 B
import type { components } from './pci.contract'; type SuccessResponse = components['schemas']['PciQuestionnaireResponse']; /** * Returns the details of a questionnaire, notably the content that * is used to generate the pdf in the frontend (to base64 blob, appending .pdf) */ export declare const getPciQuestionnaire: (legalEntityId: string, url: string, documentId: string) => Promise<SuccessResponse>; export {};