/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ChainalysisConfiguration */ export interface ChainalysisConfiguration { /** * * @type {string} * @memberof ChainalysisConfiguration */ id: string; /** * Whether Chainalysis sanctions screening is enabled for wallet addresses * @type {boolean} * @memberof ChainalysisConfiguration */ sanctionsApiEnabled: boolean; /** * Whether Chainalysis Know Your Transaction (KYT) monitoring is enabled * @type {boolean} * @memberof ChainalysisConfiguration */ kytApiEnabled: boolean; /** * * @type {string} * @memberof ChainalysisConfiguration */ projectEnvironmentId: string; /** * ISO 8601 timestamp of when the Chainalysis configuration was created * @type {Date} * @memberof ChainalysisConfiguration */ createdAt: Date; /** * ISO 8601 timestamp of when the Chainalysis configuration was last updated * @type {Date} * @memberof ChainalysisConfiguration */ updatedAt: Date; } export declare function ChainalysisConfigurationFromJSON(json: any): ChainalysisConfiguration; export declare function ChainalysisConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainalysisConfiguration; export declare function ChainalysisConfigurationToJSON(value?: ChainalysisConfiguration | null): any;