@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
7 lines (6 loc) • 429 B
TypeScript
import type { CompanyDatasetRequest, CompanyDatasetResponse } from '../companyDataSet/companyDataset.types';
import type { TinVerificationRequest, TinVerificationResponse } from '../tinVerification/tinVerification.types';
export type CompanySelectionRequest = CompanyDatasetRequest & TinVerificationRequest;
export type CompanySelectionResponse = CompanyDatasetResponse & {
tinMatched: TinVerificationResponse['matched'];
};