@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.
32 lines (31 loc) • 1.64 kB
TypeScript
import type { UserEvents } from '../../core/user-events';
export declare const debouncedInputEvent: (userEvents: UserEvents, properties: {
actionType: import("../../core/user-events").ActionType;
entityType?: import("../../core/models/api/legal-entity-type").LegalEntityType | undefined;
task?: string | undefined;
page?: string | undefined;
field?: string | undefined;
returnType?: "backend" | "validation" | (string & {}) | undefined;
returnValue?: string | string[] | undefined;
toPage?: string | undefined;
content?: string | undefined;
label?: string | undefined;
documentType?: string | undefined;
fileExtention?: string[] | undefined;
additionalData?: {
[key: string]: import("../../core/user-events").MixpanelProperty;
} | undefined;
'Experiment name'?: string | undefined;
'Variant name'?: string | undefined;
legalEntityName?: string | undefined;
companyStructure?: import("../../core/models/api/company-types-value").CompanyTypesValue | undefined;
usedAdditionalAddress?: boolean | undefined;
industryCode?: string | undefined;
countryOfRegistration?: string | undefined;
roles?: import("../../core/models/api/decision-maker-type").DecisionMakerType[] | import("../../core/models/api/legal-entity-association").LegalEntityAssociationType[] | undefined;
noOfDecisionMakers?: number | undefined;
remainingDecisionMakers?: import("../../core/models/api/legal-entity-association").LegalEntityAssociation[] | undefined;
actionLevel?: ("task" | "page" | "field" | "journey") | undefined;
} & {
field: string;
}) => void;