/** * 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. */ import { ChainEnum } from './ChainEnum'; /** * * @export * @interface WalletSanctionsResponse */ export interface WalletSanctionsResponse { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof WalletSanctionsResponse */ walletAddress: string; /** * * @type {ChainEnum} * @memberof WalletSanctionsResponse */ chain: ChainEnum; /** * Whether the wallet address is blocked due to sanctions * @type {boolean} * @memberof WalletSanctionsResponse */ isBlocked: boolean; } export declare function WalletSanctionsResponseFromJSON(json: any): WalletSanctionsResponse; export declare function WalletSanctionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletSanctionsResponse; export declare function WalletSanctionsResponseToJSON(value?: WalletSanctionsResponse | null): any;