// Copyright ©, 2023-present, Lightspark Group, Inc. - All Rights Reserved /** This is an enum identifying a type of compliance provider. **/ export enum ComplianceProvider { /** * This is an enum value that represents values that could be added in the future. * Clients should support unknown values as more of them could be added without notice. */ FUTURE_VALUE = "FUTURE_VALUE", CHAINALYSIS = "CHAINALYSIS", } export default ComplianceProvider;