@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.
29 lines (28 loc) • 980 B
TypeScript
import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
export declare const getPrefilledDetails: (legalEntity: ExistingLegalEntity | undefined) => {
transferInstrumentCount: number;
entityAssociations: import("../../core/models/api/legal-entity-association").LegalEntityAssociationType[];
organization: {
dateOfIncorporation: boolean;
financialReport: {
annualTurnover: boolean;
balanceSheetTotal: boolean;
dateOfFinancialData: boolean;
employeeCount: boolean;
};
registeredAddress: {
city: boolean;
postalCode: boolean;
stateOrProvince: boolean;
street: boolean;
};
registrationNumber: boolean;
support: {
email: boolean;
phone: boolean;
};
taxInformation: boolean;
type: boolean;
vatNumber: boolean;
} | undefined;
} | undefined;