@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
16 lines (15 loc) • 716 B
TypeScript
import type { LegalEntityType } from '../../core/models/api/legal-entity-type';
import type { CountryCode } from '../../core/models/country-code';
import type { DocumentUploadProps } from '../DocumentUpload/types';
export declare enum ConstitutionalDocumentTypes {
BUSINESS_NAME_FILING = "doingBusinessAsNameFiling",
TAX_FILING = "taxFiling",
EMPLOYER_IDENTIFICATION_NUMBER_VERIFICATION_LETTER = "einVerificationLetter",
BUSINESS_REGISTRATION_DOCUMENT = "businessRegistrationDocument",
TRUST_DEED = "trustDeed",
TRUST_INSTRUMENT = "trustInstrument"
}
export interface ConstitutionalDocumentProps extends DocumentUploadProps {
legalEntityType: LegalEntityType;
country: CountryCode;
}