@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.
14 lines (13 loc) • 671 B
JavaScript
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "e5106673-dc43-4485-9032-24072373b708", e._sentryDebugIdIdentifier = "sentry-dbid-e5106673-dc43-4485-9032-24072373b708");
} catch (e) {}
var LegalEntityTypes = {
INDIVIDUAL: "individual",
ORGANIZATION: "organization",
TRUST: "trust",
SOLE_PROPRIETORSHIP: "soleProprietorship",
UNINCORPORATED_PARTNERSHIP: "unincorporatedPartnership"
};
//#endregion
export { LegalEntityTypes as t };